From e98d312b5e06b01cc09877c1f2551e08e59f6ee1 Mon Sep 17 00:00:00 2001 From: austnv Date: Sun, 14 Jun 2026 22:51:41 +0300 Subject: [PATCH] include router --- main.py | 5 +++-- pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index 97b6db5..667e6d5 100644 --- a/main.py +++ b/main.py @@ -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) @@ -21,4 +21,5 @@ app = FastAPI( async def health_check(): return {"status": "healthy", "service": "uvpn-backend"} -app.include_router(ip.router) \ No newline at end of file +app.include_router(ip.router) +app.include_router(tariffs.router) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 06013b5..35495a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [