Coverage for src / core / __init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-18 14:29 -0300
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-18 14:29 -0300
1"""Modulo central com configuracoes compartilhadas."""
3from src.core.config import (
4 build_settings,
5 get_auth_config,
6 get_database_url,
7 get_settings,
8)
10__all__ = [
11 "build_settings",
12 "get_settings",
13 "get_database_url",
14 "get_auth_config",
15]