aboutsummaryrefslogtreecommitdiff
path: root/lib/octochat/application.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/octochat/application.ex')
-rw-r--r--lib/octochat/application.ex12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/octochat/application.ex b/lib/octochat/application.ex
new file mode 100644
index 0000000..a820dcc
--- /dev/null
+++ b/lib/octochat/application.ex
@@ -0,0 +1,12 @@
+defmodule Octochat.Application do
+ @moduledoc """
+ Octochat OTP application/entry point
+ """
+
+ use Application
+
+ def start(_, _) do
+ Octochat.Supervisor.start_link()
+ end
+
+end