Init files

This commit is contained in:
2021-07-23 14:48:20 +09:00
commit f1186d7483
38 changed files with 480 additions and 0 deletions

9
kv/kv.py Normal file
View File

@ -0,0 +1,9 @@
from fastapi import APIRouter, Depends
from auth import oauth2
from auth.login.schemas import login as schemas
from kv.routers import general
router = APIRouter()
router.include_router(general.router)