Current section

Files

Jump to
hello_twitch_api lib twitch_api auth auth_noop.ex
Raw

lib/twitch_api/auth/auth_noop.ex

defmodule TwitchAPI.AuthNoop do
@moduledoc """
Some functions that no-op.
"""
@behaviour TwitchAPI.AuthCallbacks
@impl true
def load(_name, auth), do: auth
@impl true
def put(_name, auth), do: auth
@impl true
def terminate(_name, auth), do: auth
end