Packages

GrapixStatusApi is self-contained GraphQL API demo module. It implements a `serviceStatus` query and subscription; and pair of mutations to add and trim status messages. Add :grapix_status_api as a dependency in a Grapix API project to use it.

Current section

Files

Jump to
grapix_status_api lib application.ex
Raw

lib/application.ex

defmodule GrapixStatusApi.Application do
# See https://hexdocs.pm/elixir/Application.html
# for more information on OTP Applications
@moduledoc false
use Application
def start(_type, _args) do
children = [
{GrapixStatusApi, []}
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: GrapixStatusApi.Supervisor]
Supervisor.start_link(children, opts)
end
end