Изменен ИС ЖКХ РС

This commit is contained in:
Gitea
2022-06-02 17:35:32 +09:00
parent c93a73cd52
commit 21e5ad26f2
14 changed files with 220 additions and 74 deletions

13
isjkhrs/isapi.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"}}
)