Files
taskncoffee/src/repository/auth.py
2025-09-28 22:34:14 +03:00

7 lines
187 B
Python

from src.models.tokens import RefreshTokensORM
from src.repository.base import BaseRepo
class AuthRepo(BaseRepo[RefreshTokensORM]):
model: type[RefreshTokensORM] = RefreshTokensORM