controllable timer with example usage

This commit is contained in:
Chris Milne 2026-05-13 16:13:56 +01:00
parent 0dd23f6de0
commit 8f908ac317
4 changed files with 63 additions and 3 deletions

View file

@ -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():