mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-09 12:43:11 +00:00
16 lines
344 B
Python
16 lines
344 B
Python
|
"""
|
||
|
Token repository using Redis as backend.
|
||
|
"""
|
||
|
from selfprivacy_api.repositories.tokens.abstract_tokens_repository import (
|
||
|
AbstractTokensRepository,
|
||
|
)
|
||
|
|
||
|
|
||
|
class RedisTokensRepository(AbstractTokensRepository):
|
||
|
"""
|
||
|
Token repository using Redis as a backend
|
||
|
"""
|
||
|
|
||
|
def __init__(self) -> None:
|
||
|
raise NotImplementedError
|