mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-04 14:08:38 +00:00
split the controllers into separate files
This commit is contained in:
parent
b110705f45
commit
451eb99f8a
10 changed files with 234 additions and 221 deletions
24
owrx/http.py
24
owrx/http.py
|
|
@ -1,15 +1,19 @@
|
|||
from owrx.controllers import (
|
||||
StatusController,
|
||||
from owrx.controllers.status import (
|
||||
StatusJsonController,
|
||||
IndexController,
|
||||
OwrxAssetsController,
|
||||
WebSocketController,
|
||||
MapController,
|
||||
FeatureController,
|
||||
ApiController,
|
||||
MetricsController,
|
||||
AprsSymbolsController,
|
||||
StatusController
|
||||
)
|
||||
from owrx.controllers.template import (
|
||||
IndexController,
|
||||
MapController,
|
||||
FeatureController
|
||||
)
|
||||
from owrx.controllers.assets import (
|
||||
OwrxAssetsController,
|
||||
AprsSymbolsController
|
||||
)
|
||||
from owrx.controllers.websocket import WebSocketController
|
||||
from owrx.controllers.api import ApiController
|
||||
from owrx.controllers.metrics import MetricsController
|
||||
from http.server import BaseHTTPRequestHandler
|
||||
from urllib.parse import urlparse, parse_qs
|
||||
import re
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue