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