8 lines
214 B
Python
8 lines
214 B
Python
|
|
from snek.model.push_registration import PushRegistrationModel
|
||
|
|
from snek.system.mapper import BaseMapper
|
||
|
|
|
||
|
|
|
||
|
|
class PushMapper(BaseMapper):
|
||
|
|
model_class = PushRegistrationModel
|
||
|
|
table_name = "push_registration"
|