1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-06 00:32:34 -04:00
httparrot/lib/httparrot/supervisor.ex
2013-12-27 18:47:21 -03:00

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