mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-09 00:17:59 +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
|