mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
11 lines
319 B
Python
11 lines
319 B
Python
|
|
from . import Controller
|
||
|
|
from owrx.websocket import WebSocketConnection
|
||
|
|
from owrx.connection import WebSocketMessageHandler
|
||
|
|
|
||
|
|
|
||
|
|
class WebSocketController(Controller):
|
||
|
|
def handle_request(self):
|
||
|
|
conn = WebSocketConnection(self.handler, WebSocketMessageHandler())
|
||
|
|
# enter read loop
|
||
|
|
conn.handle()
|