mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-03-01 09:24:05 +08:00
5 lines
125 B
Elixir
5 lines
125 B
Elixir
defmodule ElixirKit do
|
|
def start do
|
|
Supervisor.start_child(ElixirKit.Supervisor, {ElixirKit.Server, self()})
|
|
end
|
|
end
|