mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-28 16:20:34 +08:00
5 lines
114 B
Python
5 lines
114 B
Python
from sqlmodel import create_engine
|
|
from app.config import settings
|
|
|
|
engine = create_engine(settings.DATABASE_URI)
|