forked from erp-dev/erp
14 lines
264 B
Python
14 lines
264 B
Python
"""
|
|
api_v2 视图包。
|
|
"""
|
|
|
|
from .users import QuickCreateEmployeeUserView
|
|
from .printing import PrintingJobByCustomerView, PrintingJobV2Serializer
|
|
|
|
__all__ = [
|
|
'QuickCreateEmployeeUserView',
|
|
'PrintingJobByCustomerView',
|
|
'PrintingJobV2Serializer',
|
|
]
|
|
|