1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-11-16 08:36:34 +01:00
pleroma/restarter/lib/restarter.ex
2020-01-28 15:19:05 +03:00

9 lines
190 B
Elixir

defmodule Restarter do
use Application
def start(_, _) do
opts = [strategy: :one_for_one, name: Restarter.Supervisor]
Supervisor.start_link([Restarter.Pleroma], opts)
end
end