10 lines
220 B
Python
10 lines
220 B
Python
# -*- coding = utf-8 -*-
|
|
# @Time : 2025/2/13 下午4:53
|
|
# @File : routes.py
|
|
# @Software : PyCharm
|
|
# @Author : xingc
|
|
# @Desc :
|
|
from fastapi import APIRouter
|
|
|
|
user_router = APIRouter(prefix='/user', tags=['用户模块'])
|