Current section

Files

Jump to
bb_kino lib bb kino application.ex
Raw

lib/bb/kino/application.ex

# SPDX-FileCopyrightText: 2025 James Harton
#
# SPDX-License-Identifier: Apache-2.0
defmodule BB.Kino.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
Kino.SmartCell.register(BB.Kino.ManageRobotCell)
children = []
opts = [strategy: :one_for_one, name: BB.Kino.Supervisor]
Supervisor.start_link(children, opts)
end
end