1
0
Fork 0
mirror of https://git.youjo.love/youjo/youjo-be.git synced 2025-03-12 22:10:00 +01:00
youjo-be/restarter/lib/restarter.ex

9 lines
190 B
Elixir
Raw Normal View History

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