Source code for slowly.auth

[docs] class Auth: def __init__( self, token=None, ): self.token = token
[docs] async def check_token(self): raise NotImplementedError
[docs] async def login(self, email: str): raise NotImplementedError