diff options
Diffstat (limited to 'app/AggroConfig.py')
| -rw-r--r-- | app/AggroConfig.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/AggroConfig.py b/app/AggroConfig.py index 7e6a5f3..789fd6b 100644 --- a/app/AggroConfig.py +++ b/app/AggroConfig.py @@ -1,10 +1,12 @@ from dataclasses import dataclass +from app.PluginInterface import Params + @dataclass class AggroConfig: server_host: str server_port: int db_path: str - plugins: dict[str, dict[str, str]] + plugins: dict[str, Params] graph: dict[str, list[str]] |
