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