Implement service-based model for jobs

This commit is contained in:
2026-06-29 13:18:23 +05:30
parent 7201fa0138
commit e0cd0bba6e
12 changed files with 728 additions and 2 deletions

5
main.py Normal file
View File

@@ -0,0 +1,5 @@
import uvicorn
if __name__ == "__main__":
uvicorn.run("app.app:app", host="0.0.0.0", port=3000, reload=True)