mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-06 00:32:34 -04:00
14 lines
249 B
Elixir
14 lines
249 B
Elixir
defmodule HTTParrot.Supervisor do
|
|
use Supervisor.Behaviour
|
|
|
|
def start_link do
|
|
:supervisor.start_link({:local, __MODULE__}, __MODULE__, [])
|
|
end
|
|
|
|
def init([]) do
|
|
children = []
|
|
supervise children, strategy: :one_for_one
|
|
end
|
|
end
|
|
|
|
|