20 lines
390 B
Python
20 lines
390 B
Python
import logging
|
|
|
|
from hopper.models.config import (
|
|
BoardSettings,
|
|
GameSettings,
|
|
InactivityWatchdogSettings,
|
|
Settings,
|
|
WSServerSettings,
|
|
)
|
|
|
|
settings = Settings(
|
|
game=GameSettings(),
|
|
board=BoardSettings(),
|
|
inacivity_watchdog=InactivityWatchdogSettings(),
|
|
log_level=logging.INFO,
|
|
ws_server=WSServerSettings(),
|
|
purchase_timeout=10,
|
|
debug=None,
|
|
)
|