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.

23 lines
444 B

# !/usr/bin/env python3
# -*- encoding : utf-8 -*-
# @Filename : __init__.py
# @Software : VSCode
# @Datetime : 2021/11/03 17:19:33
# @Author : leo liu
# @Version : 1.0
# @Description :
"""
路由汇总
"""
from fastapi import APIRouter
from api.v1 import auth
from api.v1 import chat
api_v1 = APIRouter()
api_v1.include_router(auth.router, tags=["鉴权相关"])
api_v1.include_router(chat.router, tags=["J-Med聊天"])