aboutsummaryrefslogtreecommitdiff
path: root/shardweb/lib/application.ex
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2018-09-26 18:14:32 +0200
committerAlex Auvolat <alex@adnab.me>2018-09-26 18:14:32 +0200
commit26629dc30a116204263ac4b515600649ba742ba0 (patch)
treea066688ce44e028abd188867bc92b72496d4893a /shardweb/lib/application.ex
parent1a13285971ef728109011a93e676e26248b30242 (diff)
downloadshard-26629dc30a116204263ac4b515600649ba742ba0.tar.gz
shard-26629dc30a116204263ac4b515600649ba742ba0.zip
Web UI for multiple identities
Diffstat (limited to 'shardweb/lib/application.ex')
-rw-r--r--shardweb/lib/application.ex8
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