livebook/elixirkit/lib/elixirkit.ex

6 lines
125 B
Elixir
Raw Normal View History

2023-01-17 04:09:47 +08:00
defmodule ElixirKit do
def start do
Supervisor.start_child(ElixirKit.Supervisor, {ElixirKit.Server, self()})
end
end