mirror of
https://github.com/lorsanstand/Aether.git
synced 2026-06-19 20:15:16 +03:00
7 lines
215 B
Python
7 lines
215 B
Python
from app.core.dao import BaseDAO
|
|
from app.users.models import UserModel
|
|
from app.users.schemas import UserCreateDB, UserUpdateDB
|
|
|
|
|
|
class UserDAO(BaseDAO[UserModel, UserCreateDB, UserUpdateDB]):
|
|
model = UserModel |