10 lines
165 B
Python
10 lines
165 B
Python
"""Main entrypoint to the server."""
|
|
|
|
from fastapi import FastAPI
|
|
|
|
import spoolson.api.v1.router
|
|
|
|
app = FastAPI()
|
|
|
|
app.include_router(spoolson.api.v1.router.router)
|