Packages

Elixir client for the Microsoft Graph API

Current section

Files

Jump to
keen_microsoft_graphapi lib graph_api application.ex
Raw

lib/graph_api/application.ex

defmodule GraphApi.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
GraphApi.TokenStore
]
opts = [strategy: :one_for_one, name: GraphApi.Supervisor]
Supervisor.start_link(children, opts)
end
end