24 lines
356 B
Python
24 lines
356 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
API v2 Routers
|
|
API v2 路由模块
|
|
"""
|
|
|
|
# 导入所有路由模块
|
|
from . import content
|
|
from . import poster
|
|
from . import document
|
|
from . import crawling
|
|
from . import data
|
|
from . import workflow
|
|
|
|
__all__ = [
|
|
"content",
|
|
"poster",
|
|
"document",
|
|
"crawling",
|
|
"data",
|
|
"workflow"
|
|
] |