XRyZ's picture
Upload folder using huggingface_hub
01c6926 verified
Raw
History Blame Contribute Delete
228 Bytes
from abc import ABC, abstractmethod
class JWTService(ABC):
@abstractmethod
def create_access_token(self, data: dict) -> str:
...
@abstractmethod
def decode_token(self, token: str) -> dict:
...