Refactor basically everything

This commit is contained in:
Helix K
2026-04-29 13:35:53 -05:00
parent e1e4a60b6d
commit 2791ed59e3
11 changed files with 615 additions and 220 deletions
+23
View File
@@ -0,0 +1,23 @@
[project]
name = "velping"
version = "0.1.0"
description = "A simple pinger"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.136.1",
"httpx>=0.28.1",
"jinja2>=3.1.6",
"pydantic>=2.13.3",
"uvicorn>=0.46.0",
]
[tool.ruff]
target-version = "py311"
line-length = 88
[tool.ruff.format]
indent-style = "tab"
docstring-code-format = false
[tool.ruff.lint]
extend-select = ["I001", "FAST"]