include router

This commit is contained in:
austnv
2026-06-14 22:51:41 +03:00
parent cdcbf0b622
commit e98d312b5e
2 changed files with 5 additions and 4 deletions
+2 -1
View File
@@ -2,7 +2,7 @@ from fastapi import FastAPI
import tomllib
import logging
from routers import ip
from routers import ip, tariffs
logging.basicConfig(level=logging.INFO)
@@ -22,3 +22,4 @@ async def health_check():
return {"status": "healthy", "service": "uvpn-backend"}
app.include_router(ip.router)
app.include_router(tariffs.router)
+2 -2
View File
@@ -1,7 +1,7 @@
[project]
name = "uvpn-backend"
version = "0.1.0"
description = "Add your description here"
version = "0.2.0"
description = "FastAPI backend with Docker for uvpn.shop"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [