Module slack_sdk.oauth.state_store.async_state_store

Classes

class AsyncOAuthStateStore
Expand source code
class AsyncOAuthStateStore:
    @property
    def logger(self) -> Logger:
        raise NotImplementedError()

    async def async_issue(self, *args, **kwargs) -> str:
        raise NotImplementedError()

    async def async_consume(self, state: str) -> bool:
        raise NotImplementedError()

Subclasses

Instance variables

prop logger : logging.Logger
Expand source code
@property
def logger(self) -> Logger:
    raise NotImplementedError()

Methods

async def async_consume(self, state: str) ‑> bool
async def async_issue(self, *args, **kwargs) ‑> str