Skip to content

Instantly share code, notes, and snippets.

@samueljmurray
Created March 27, 2017 10:24
Show Gist options
  • Select an option

  • Save samueljmurray/8cbf1e5554318e5dcc246cd852fbf2b3 to your computer and use it in GitHub Desktop.

Select an option

Save samueljmurray/8cbf1e5554318e5dcc246cd852fbf2b3 to your computer and use it in GitHub Desktop.
App supervisor
def start(_type, _args) do
import Supervisor.Spec
children = [
worker(GuardianDb.ExpiredSweeper, [])
# ...
]
Supervisor.start_link(children, [...])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment