mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
6 lines
138 B
Python
6 lines
138 B
Python
# -*- coding: utf-8 -*-
|
|
from app.config import settings
|
|
from sqlmodel import create_engine
|
|
|
|
engine = create_engine(settings.DATABASE_URI)
|