Dan Albert 21f7912458 Add websocket event stream for sim updates.
As a proof of concept this only covers the flight positions.
2022-02-16 01:34:56 -08:00

8 lines
171 B
Python

from fastapi import FastAPI
from . import debuggeometries, eventstream
app = FastAPI()
app.include_router(debuggeometries.router)
app.include_router(eventstream.router)