SurfSense/surfsense_backend/gateway_runner.py
2026-05-27 23:39:05 +05:30

11 lines
209 B
Python

"""Entrypoint for SERVICE_ROLE=gateway."""
from __future__ import annotations
import asyncio
from app.gateway.runner import GatewayRunner
if __name__ == "__main__":
asyncio.run(GatewayRunner().run())