Add notification sender and update item routes
This commit is contained in:
6
dependencies.py
Normal file
6
dependencies.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from typing import Annotated
|
||||
from sqlmodel.ext.asyncio.session import AsyncSession
|
||||
from fastapi import Depends
|
||||
from model import database
|
||||
|
||||
SessionDep = Annotated[AsyncSession, Depends(database.Database.get_session)]
|
||||
Reference in New Issue
Block a user