adm-ntuh-net/ntuh/dojango/data/modelstore/__init__.py

30 lines
716 B
Python
Raw Normal View History

2024-12-12 02:19:16 +00:00
""" 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'
)