first commit

This commit is contained in:
brusnitsyn
2026-04-16 17:57:58 +09:00
commit 7a13ff3b74
22 changed files with 3319 additions and 0 deletions

7
main.py Normal file
View File

@@ -0,0 +1,7 @@
from app.api import app
from app.cli import main
if __name__ == "__main__":
exit_code = main()
exit(exit_code)