nightly - 2025-09-20

This commit is contained in:
2025-09-21 00:09:19 -04:00
parent cbc20a2897
commit b5afe0ef48
20 changed files with 323 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/env python3
from fastapi import FastAPI
from sys import argv
from routers.prefixes import prefix_router
if argv[1] == "run":
app = FastAPI(title="TAM3 API Server", docs_url=None, redoc_url=None)
else:
app = FastAPI(title="TAM3 API Server")
app.include_router(prefix_router)