15 lines
229 B
Python
15 lines
229 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
|
||
|
|
"""
|
||
|
|
API v2 Services
|
||
|
|
服务层模块
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .database_service import DatabaseService
|
||
|
|
from .file_service import FileService
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"DatabaseService",
|
||
|
|
"FileService"
|
||
|
|
]
|