This commit is contained in:
Gavin McDonald
2018-11-11 14:54:41 -05:00
commit 921b2a603d
13 changed files with 475 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
defmodule ExMine.Application do
use Application
def start(_type, _args) do
import Supervisor.Spec
children = [
worker(ExMine.Server, [])
]
options = [
name: ExMine.Supervisor,
strategy: :simple_one_for_one,
]
Supervisor.start_link(children, options)
end
end