troll.ex 331 B

123456789101112131415
  1. defmodule Fourletters.Troll do
  2. use Supervisor
  3. def start_link(arg) do
  4. Supervisor.start_link(__MODULE__, arg, name: __MODULE__)
  5. end
  6. @impl true
  7. def init(_arg) do
  8. children = [
  9. %{id: :butt, start: {ABCD.Fourletters, :start_link, [["yo"]]}}
  10. ]
  11. Supervisor.init(children, strategy: :one_for_one)
  12. end
  13. end