Исправления

This commit is contained in:
Gitea
2022-06-16 09:38:24 +09:00
parent 21e5ad26f2
commit 8d82068324
12 changed files with 175 additions and 103 deletions

13
isjkhrs/is.py Normal file
View File

@ -0,0 +1,13 @@
from fastapi import APIRouter, Depends
from auth import oauth2
from auth.login.schemas import login as schemas
from isjkhrs import ismain
router = APIRouter()
router.include_router(
router=ismain.router,
prefix="",
responses={404: {"description": "IS is Not found"}}
)