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