Packages

A collection of totally awesome Livebook smartcells by sdball

Current section

Files

Jump to
smart_cells_by_sdball lib application.ex
Raw

lib/application.ex

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