diff --git a/main.py b/main.py index 667e6d5..d6ef9f6 100644 --- a/main.py +++ b/main.py @@ -2,7 +2,7 @@ from fastapi import FastAPI import tomllib import logging -from routers import ip, tariffs +from routers import ip, tariffs, nodes logging.basicConfig(level=logging.INFO) @@ -22,4 +22,5 @@ async def health_check(): return {"status": "healthy", "service": "uvpn-backend"} app.include_router(ip.router) -app.include_router(tariffs.router) \ No newline at end of file +app.include_router(tariffs.router) +app.include_router(nodes.router) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index cc970bf..39007dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uvpn-backend" -version = "0.3.0" +version = "0.4.0" description = "FastAPI backend with Docker for uvpn.shop" readme = "README.md" requires-python = ">=3.12"