Packages

A livebook smartcell to connect to nodes and send commands from livebook and use locally installed goodies

Current section

Files

Jump to
cluster_connect_smartcell lib cluster_connect_smartcell application.ex
Raw

lib/cluster_connect_smartcell/application.ex

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