feat: basic web service by fastapi and uvicorn

This commit is contained in:
2025-11-11 21:14:07 +08:00
parent 7cea2eb8a5
commit 268eb8be2b
5 changed files with 289 additions and 0 deletions

10
pyproject.toml Normal file
View File

@@ -0,0 +1,10 @@
[project]
name = "service"
version = "0.1"
description = "This project is the web servcie sub-system for if.u projuect"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.118.3",
"uvicorn>=0.38.0",
]