feat(gateway): add long-lived gateway runner

This commit is contained in:
Anish Sarkar 2026-05-27 23:39:05 +05:30
parent b8538655bb
commit bd86a72587
2 changed files with 108 additions and 0 deletions

View file

@ -0,0 +1,11 @@
"""Entrypoint for SERVICE_ROLE=gateway."""
from __future__ import annotations
import asyncio
from app.gateway.runner import GatewayRunner
if __name__ == "__main__":
asyncio.run(GatewayRunner().run())