24 lines
356 B
Python
Raw Permalink Normal View History

2025-07-30 09:16:53 +08:00
#!/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"
]