add nodes router to app
This commit is contained in:
@@ -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)
|
||||
app.include_router(tariffs.router)
|
||||
app.include_router(nodes.router)
|
||||
+1
-1
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user