diff --git a/src/runboat/api.py b/src/runboat/api.py index fb994e6..794410e 100644 --- a/src/runboat/api.py +++ b/src/runboat/api.py @@ -216,36 +216,3 @@ async def eventsource_endpoint( ) -> EventSourceResponse: event_source = BuildEventSource(request, repo, build_name) return EventSourceResponse(event_source.events()) - - -eshtml = """ - - - - SSE Test - - -

SSE Test

- - - - -""" - - -@router.get("/estest") -async def get() -> HTMLResponse: - return HTMLResponse(eshtml)