aboutsummaryrefslogtreecommitdiffstats
path: root/examples/elixir_hello_world/lib/elixir_hello_world
diff options
context:
space:
mode:
Diffstat (limited to 'examples/elixir_hello_world/lib/elixir_hello_world')
-rw-r--r--examples/elixir_hello_world/lib/elixir_hello_world/supervisor.ex12
-rw-r--r--examples/elixir_hello_world/lib/elixir_hello_world/top_page_handler.ex12
2 files changed, 0 insertions, 24 deletions
diff --git a/examples/elixir_hello_world/lib/elixir_hello_world/supervisor.ex b/examples/elixir_hello_world/lib/elixir_hello_world/supervisor.ex
deleted file mode 100644
index f9b569f..0000000
--- a/examples/elixir_hello_world/lib/elixir_hello_world/supervisor.ex
+++ /dev/null
@@ -1,12 +0,0 @@
-defmodule ElixirHelloWorld.Supervisor do
- use Supervisor.Behaviour
-
- def start_link do
- :supervisor.start_link(__MODULE__, [])
- end
-
- def init([]) do
- children = []
- supervise children, strategy: :one_for_one
- end
-end
diff --git a/examples/elixir_hello_world/lib/elixir_hello_world/top_page_handler.ex b/examples/elixir_hello_world/lib/elixir_hello_world/top_page_handler.ex
deleted file mode 100644
index 58e37b4..0000000
--- a/examples/elixir_hello_world/lib/elixir_hello_world/top_page_handler.ex
+++ /dev/null
@@ -1,12 +0,0 @@
-defmodule ElixirHelloWorld.TopPageHandler do
- def init(_transport, req, []) do
- {:ok, req, nil}
- end
-
- def handle(req, state) do
- {:ok, req} = :cowboy_req.reply(200, [], "Hello world!", req)
- {:ok, req, state}
- end
-
- def terminate(_reason, _req, _state), do: :ok
-end