Added project structure and basic data models

This commit is contained in:
Donkie
2023-04-01 16:24:08 +02:00
commit c9b4705b28
18 changed files with 1031 additions and 0 deletions

13
spoolson/api/v1/router.py Normal file
View File

@@ -0,0 +1,13 @@
"""Router setup for the v1 version of the API."""
from fastapi import APIRouter
from . import filament, spool, vendor
router = APIRouter(
prefix="/v1",
tags=["v1"],
)
router.include_router(filament.router)
router.include_router(spool.router)
router.include_router(vendor.router)