1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-23 14:23:10 +00:00
akkoma/restarter/lib/restarter.ex
2020-01-28 15:19:05 +03:00

8 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