Packages

UeberauthToken provides an oauth2 token authentication strategy leveraging functionality provided by ueberauth

Current section

Files

Jump to
ueberauth_token lib ueberauth_token application.ex
Raw

lib/ueberauth_token/application.ex

defmodule UeberauthToken.Application do
@moduledoc false
use Application
alias UeberauthToken.Supervisor
def start(_type, _args) do
Supervisor.start_link([])
end
end