6 lines
131 B
Python
6 lines
131 B
Python
from sqlmodel import create_engine
|
|
|
|
from app.core.config import settings
|
|
|
|
engine = create_engine(settings.SQLALCHEMY_DATABASE_URI)
|