Init project structure

This commit is contained in:
k1nq
2025-11-22 13:56:45 +05:00
parent ad0025be28
commit 74330b292f
25 changed files with 1343 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
"""Entry point for running the FastAPI application with uvicorn."""
import uvicorn
def main() -> None:
"""Run development server."""
uvicorn.run("app.main:app", host="0.0.0.0", port=8000, reload=True)
if __name__ == "__main__":
main()