12 lines
155 B
Python
12 lines
155 B
Python
from typing import Dict
|
|
|
|
from structured_config import Structure
|
|
|
|
HAS_MODELS = True
|
|
|
|
|
|
class PollsConfig(Structure):
|
|
pass
|
|
|
|
|
|
extra: Dict[str, Dict] = {}
|