Изменен ИС ЖКХ РС
This commit is contained in:
13
isjkhrs/isapi.py
Normal file
13
isjkhrs/isapi.py
Normal 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"}}
|
||||
)
|
Reference in New Issue
Block a user