finish for init core

This commit is contained in:
2024-05-09 16:01:32 +00:00
parent ab1e864478
commit bc8815f40e
42 changed files with 520 additions and 214 deletions

View File

@ -0,0 +1,7 @@
from fastapi import APIRouter
from . import (auth)
router = APIRouter(prefix='/api')
router.include_router(auth.router)