use logging

This commit is contained in:
ars
2026-06-15 03:29:42 +03:00
parent 25ca35c097
commit a321d64169
7 changed files with 91 additions and 11 deletions
+2
View File
@@ -1,9 +1,11 @@
import uvicorn
from nexus_sync.server.app import app
from nexus_sync.utils import configure_logging
def main() -> None:
configure_logging()
uvicorn.run(app, host="0.0.0.0", port=8000)