Files
fastapi-best-architecture/backend/app/api/v1/auth/__init__.py
T
Wu Clan f8b48e4eea Add login graphic captcha (#124)
* add the get verification code interface

* add the login interface captcha

* clean up the debugging code
2023-06-13 23:27:12 +08:00

11 lines
336 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from fastapi import APIRouter
from backend.app.api.v1.auth.auth import router as auth_router
from backend.app.api.v1.auth.captcha import router as captcha_router
router = APIRouter(prefix='/auth', tags=['认证'])
router.include_router(auth_router)
router.include_router(captcha_router)