crappy
This commit is contained in:
8
services/base.py
Normal file
8
services/base.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from sqlalchemy.ext.asyncio import AsyncSession
|
||||
|
||||
|
||||
class BaseService:
|
||||
session: AsyncSession
|
||||
|
||||
def __init__(self, session: AsyncSession):
|
||||
self.session = session
|
||||
Reference in New Issue
Block a user