7 lines
201 B
Python
7 lines
201 B
Python
"""Configuration module for nanobot."""
|
|
|
|
from nanobot.config.loader import load_config, get_config_path
|
|
from nanobot.config.schema import Config
|
|
|
|
__all__ = ["Config", "load_config", "get_config_path"]
|