Packages

GitHub GraphQL integration with LiveBook

Current section

Files

Jump to
github_graphql_smartcell lib application.ex
Raw

lib/application.ex

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