blob: 789fd6b6fcb6daca9c5d0f4c3b98f84dd4d73602 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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, Params]
graph: dict[str, list[str]]
|