14 lines
278 B
Python
14 lines
278 B
Python
from hopper.models.config import (
|
|
BoardSettings,
|
|
InactivityWatchdogSettings,
|
|
Settings,
|
|
WSServerSettings,
|
|
)
|
|
|
|
settings = Settings(
|
|
board=BoardSettings(),
|
|
inacivity_watchdog=InactivityWatchdogSettings(),
|
|
ws_server=WSServerSettings(),
|
|
debug=None,
|
|
)
|