18 lines
326 B
Python
18 lines
326 B
Python
|
|
"""API 路由模块"""
|
||
|
|
|
||
|
|
from . import agents, locks, meetings, heartbeats, workflows, resources, roles, humans
|
||
|
|
from . import agents_control, websocket
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"agents",
|
||
|
|
"locks",
|
||
|
|
"meetings",
|
||
|
|
"heartbeats",
|
||
|
|
"workflows",
|
||
|
|
"resources",
|
||
|
|
"roles",
|
||
|
|
"humans",
|
||
|
|
"agents_control",
|
||
|
|
"websocket"
|
||
|
|
]
|