File size: 205 Bytes
bb48ea5
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from .database import SessionLocal, engine, Base
from .schema import *
from .operation import *


def get_db():
    db = SessionLocal()
    try:
        yield db
    finally:
        db.close()