Added project structure and basic data models
This commit is contained in:
9
spoolson/main.py
Normal file
9
spoolson/main.py
Normal file
@@ -0,0 +1,9 @@
|
||||
"""Main entrypoint to the server."""
|
||||
|
||||
from fastapi import FastAPI
|
||||
|
||||
import spoolson.api.v1.router
|
||||
|
||||
app = FastAPI()
|
||||
|
||||
app.include_router(spoolson.api.v1.router.router)
|
||||
Reference in New Issue
Block a user