mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-01-23 08:40:21 +01:00
7 lines
152 B
Python
7 lines
152 B
Python
from http.server import HTTPServer
|
|
from owrx.http import RequestHandler
|
|
|
|
server = HTTPServer(('0.0.0.0', 3000), RequestHandler)
|
|
server.serve_forever()
|
|
|