frontend añadido y backend de creacion de notas
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
from backend.db.session import SessionLocal
|
||||
|
||||
def get_db():
|
||||
db = SessionLocal()
|
||||
try:
|
||||
yield db
|
||||
finally:
|
||||
db.close()
|
||||
Reference in New Issue
Block a user