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