8 lines
136 B
Python
8 lines
136 B
Python
|
|
from sqlmodel import Session
|
||
|
|
|
||
|
|
from .engine import engine
|
||
|
|
|
||
|
|
def get_session():
|
||
|
|
with Session(engine) as session:
|
||
|
|
yield session
|