projects
/
anni
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
total rebase
[anni]
/
restarter
/
lib
/
restarter.ex
1
defmodule Restarter do
2
use Application
3
4
def start(_, _) do
5
opts = [strategy: :one_for_one, name: Restarter.Supervisor]
6
Supervisor.start_link([Restarter.Pleroma], opts)
7
end
8
end