Current section

Files

Jump to
auctoritas lib auctoritas token_manager.ex
Raw

lib/auctoritas/token_manager.ex

defmodule Auctoritas.TokenManager do
@type token() :: String.t()
@type name() :: String.t()
@callback generate_token(name(), any()) :: {atom(), token()}
@callback authentification_data_check(name(), any()) :: {atom(), any()}
@callback data_check(name(), any()) :: {atom(), any()}
end