mirror of
https://github.com/zhtyyx/ioe.git
synced 2026-06-03 21:02:59 +08:00
24 lines
603 B
Python
24 lines
603 B
Python
"""
|
||
业务服务层包
|
||
提供各种业务逻辑处理服务
|
||
"""
|
||
|
||
# 导入所有服务模块,使它们可以通过inventory.services访问
|
||
from . import product_service
|
||
from . import member_service
|
||
from . import export_service
|
||
from . import report_service
|
||
from . import inventory_check_service
|
||
from . import backup_service
|
||
from . import inventory_service
|
||
|
||
# 导出服务模块,方便直接访问
|
||
__all__ = [
|
||
'product_service',
|
||
'member_service',
|
||
'export_service',
|
||
'report_service',
|
||
'inventory_check_service',
|
||
'backup_service',
|
||
'inventory_service',
|
||
] |