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