controllable timer with example usage
This commit is contained in:
parent
0dd23f6de0
commit
8f908ac317
4 changed files with 63 additions and 3 deletions
|
|
@ -4,12 +4,13 @@ This module hooks the routers for the main endpoints into a single router for im
|
|||
from fastapi import APIRouter
|
||||
|
||||
from src.auth.router import router as auth_router
|
||||
from src._module_template.router import router as template_router
|
||||
|
||||
|
||||
api_router = APIRouter()
|
||||
|
||||
api_router.include_router(auth_router)
|
||||
|
||||
api_router.include_router(template_router)
|
||||
|
||||
@api_router.get("/healthcheck", include_in_schema=False)
|
||||
def healthcheck():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue