10 lines
239 B
Python
10 lines
239 B
Python
from sqlmodel import Session, create_engine, select
|
|
from app.config import settings
|
|
from app.models import Client, Supplier
|
|
|
|
engine = create_engine(str(settings.SQLALCHEMY_DATABASE_URI))
|
|
|
|
|
|
def init_db(session: Session) -> None:
|
|
""""""
|