aboutsummaryrefslogtreecommitdiffstats
path: root/examples/elixir_hello_world/lib/elixir_hello_world.ex
diff options
context:
space:
mode:
Diffstat (limited to 'examples/elixir_hello_world/lib/elixir_hello_world.ex')
-rw-r--r--examples/elixir_hello_world/lib/elixir_hello_world.ex13
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/elixir_hello_world/lib/elixir_hello_world.ex b/examples/elixir_hello_world/lib/elixir_hello_world.ex
deleted file mode 100644
index 2da484b..0000000
--- a/examples/elixir_hello_world/lib/elixir_hello_world.ex
+++ /dev/null
@@ -1,13 +0,0 @@
-defmodule ElixirHelloWorld do
- use Application.Behaviour
-
- def start(_type, _args) do
- dispatch = :cowboy_router.compile([
- {:_, [{"/", ElixirHelloWorld.TopPageHandler, []}]}
- ])
- {:ok, _} = :cowboy.start_http(:http, 100,
- [port: 8080],
- [env: [dispatch: dispatch]])
- ElixirHelloWorld.Supervisor.start_link
- end
-end