refactor: reorganize imports and improve error handling in application fix: correct typo in ip2location middleware chore: add author headers to source files
10 lines
247 B
Python
10 lines
247 B
Python
# retoor <retoor@molodetz.nl>
|
|
|
|
from snek.model.channel_message import ChannelMessageModel
|
|
from snek.system.mapper import BaseMapper
|
|
|
|
|
|
class ChannelMessageMapper(BaseMapper):
|
|
model_class = ChannelMessageModel
|
|
table_name = "channel_message"
|