Packages

ExDuckSmartCell is a Livebook smart cell interface to ExDuck.

Retired package: Renamed - Package renamed to kino_duckduckgo

Current section

Files

Jump to
ex_duck_smart_cell lib application.ex
Raw

lib/application.ex

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