9 lines
235 B
Python
9 lines
235 B
Python
"""Configuration defaults and helpers for the AI sidebar."""
|
|
|
|
|
|
class Config:
|
|
"""Placeholder configuration container."""
|
|
|
|
def __init__(self) -> None:
|
|
raise NotImplementedError("Configuration logic not implemented yet.")
|