6 lines
127 B
Elixir
6 lines
127 B
Elixir
|
defmodule Webgen do
|
||
|
def start(_type, _args) do
|
||
|
Supervisor.start_link([{Merger, []}], [strategy: :one_for_one])
|
||
|
end
|
||
|
end
|