You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
252 B

# -*- coding: utf-8 -*-
"""
===================================
API v1 模块初始化
===================================
职责
1. 导出 v1 版本 API 的路由
"""
from api.v1.router import router as api_v1_router
__all__ = ["api_v1_router"]