move structures out of webserver

This commit is contained in:
Jakub Trllo 2024-07-24 18:32:45 +02:00
parent 4511f8db5b
commit a4bb042337
3 changed files with 1 additions and 3 deletions

View file

@ -1,4 +1,4 @@
from .webserver import HostMsgAction
from .structures import HostMsgAction
from .lib import (
TrayState,
get_tray_state,

View file

@ -1,10 +1,8 @@
from .structures import HostMsgAction
from .base_routes import RestApiEndpoint
from .server import find_free_port, WebServerManager
__all__ = (
"HostMsgAction",
"RestApiEndpoint",
"find_free_port",
"WebServerManager",