Files
taskncoffee/src/repository/auth.py
2025-09-21 12:08:04 +03:00

7 lines
169 B
Python

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