general router (empty)

This commit is contained in:
Jörn-Michael Miehe 2022-10-14 22:47:48 +00:00
parent 71482983bf
commit f0b314fd7c
2 changed files with 5 additions and 1 deletions

View file

@ -1,8 +1,9 @@
from fastapi import APIRouter
from . import abspacken, days
from . import abspacken, days, general
router = APIRouter(prefix="/api")
router.include_router(abspacken.router)
router.include_router(days.router)
router.include_router(general.router)

View file

@ -0,0 +1,3 @@
from fastapi import APIRouter
router = APIRouter(prefix="/general", tags=["general"])