7 lines
118 B
Python
7 lines
118 B
Python
from sqlalchemy import insert, select
|
|
|
|
from app.database import async_session_maker
|
|
|
|
|
|
class BaseDAO:
|
|
model = None
|