diff options
Diffstat (limited to 'shardweb/lib/application.ex')
-rw-r--r-- | shardweb/lib/application.ex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shardweb/lib/application.ex b/shardweb/lib/application.ex index 2de7bff..94b2f32 100644 --- a/shardweb/lib/application.ex +++ b/shardweb/lib/application.ex @@ -1,4 +1,4 @@ -defmodule Shardweb.Application do +defmodule ShardWeb.Application do use Application # See https://hexdocs.pm/elixir/Application.html @@ -10,13 +10,13 @@ defmodule Shardweb.Application do children = [ # Start the endpoint when the application starts supervisor(ShardWeb.Endpoint, []), - # Start your own worker by calling: Shardweb.Worker.start_link(arg1, arg2, arg3) - # worker(Shardweb.Worker, [arg1, arg2, arg3]), + # Start your own worker by calling: ShardWeb.Worker.start_link(arg1, arg2, arg3) + # worker(ShardWeb.Worker, [arg1, arg2, arg3]), ] # See https://hexdocs.pm/elixir/Supervisor.html # for other strategies and supported options - opts = [strategy: :one_for_one, name: Shardweb.Supervisor] + opts = [strategy: :one_for_one, name: ShardWeb.Supervisor] Supervisor.start_link(children, opts) end |