6 lines
137 B
Python
6 lines
137 B
Python
|
|
# Core package
|
||
|
|
from app.core.config import settings
|
||
|
|
from app.core.database import get_db, Base
|
||
|
|
|
||
|
|
__all__ = ["settings", "get_db", "Base"]
|