2# +==== BEGIN CatFeeder =================+
5# ...............)..(.')
7# ...............\(__)|
8# Inspired by Joan Stark
9# source https://www.asciiart.eu/
14# CREATION DATE: 04-12-2025
15# LAST Modified: 22:15:22 14-01-2026
17# This is the backend server in charge of making the actual website work.
19# COPYRIGHT: (c) Cat Feeder
21# The file in charge of exposing the classes and functions in the folder that the user is supposed to be able to use.
22# Configuration Package
23# Centralized configuration management for the Asperguide Backend.
24# Provides singleton loaders for config.toml and .env files with smart path resolution.
26# from config import get_config, get_env
27# db_host = get_config('Database', 'host')
28# api_key = get_env('API_KEY')
31# +==== END CatFeeder =================+
34from .toml_loader
import load_config, get_config, get_project_root, refresh_debug, TOMLLoader
35from .env_loader
import load_env, get_env, apply_env, EnvLoader
37ConfigLoader = TOMLLoader