Initial commit

This commit is contained in:
unknown
2026-05-14 00:42:39 +02:00
commit dae8a0a4a1
37 changed files with 1226 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
from starlette.responses import JSONResponse
from serverside.helpers.config import get
async def version(request):
return JSONResponse({"api_version": get("general", "version", fallback="1.0.0")})