30 lines
716 B
Python
30 lines
716 B
Python
|
""" Django ModelStore
|
||
|
"""
|
||
|
|
||
|
from stores import Store, ModelQueryStore
|
||
|
|
||
|
from methods import Method, ModelMethod, \
|
||
|
ObjectMethod, StoreMethod, FieldMethod, ValueMethod, \
|
||
|
RequestArg, ModelArg, ObjectArg, FieldArg, StoreArg
|
||
|
|
||
|
from fields import StoreField, ReferenceField
|
||
|
|
||
|
from services import BaseService, JsonService, servicemethod
|
||
|
|
||
|
from utils import get_object_from_identifier
|
||
|
|
||
|
__all__ = (
|
||
|
'Store', 'ModelQueryStore',
|
||
|
|
||
|
'Method', 'ModelMethod', 'ObjectMethod', 'StoreMethod',
|
||
|
'FieldMethod', 'ValueMethod',
|
||
|
|
||
|
'RequestArg', 'ModelArg', 'ObjectArg', 'FieldArg', 'StoreArg',
|
||
|
|
||
|
'StoreField', 'ReferenceField',
|
||
|
|
||
|
'BaseService', 'JsonService', 'servicemethod',
|
||
|
|
||
|
'get_object_from_identifier'
|
||
|
)
|