dev #11

Merged
k1nq merged 76 commits from dev into master 2025-11-30 04:48:35 +00:00
1 changed files with 0 additions and 11 deletions
Showing only changes of commit d38d07c26d - Show all commits

11
main.py
View File

@ -1,11 +0,0 @@
"""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()