implement heartbeat command

This commit is contained in:
ars
2026-05-24 18:36:55 +03:00
parent c92c5195ce
commit f9aed123fd
11 changed files with 663 additions and 25 deletions
+6 -1
View File
@@ -1,5 +1,10 @@
import uvicorn
from nexus_sync.server.app import app
def main() -> None:
print("nexus-sync server")
uvicorn.run(app, host="0.0.0.0", port=8000)
if __name__ == "__main__":