logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

restarter.ex (190B)


  1. defmodule Restarter do
  2. use Application
  3. def start(_, _) do
  4. opts = [strategy: :one_for_one, name: Restarter.Supervisor]
  5. Supervisor.start_link([Restarter.Pleroma], opts)
  6. end
  7. end