7 lines
187 B
Python
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
|