From 2175a2f4d9a416f4a443166a2487c8c12a3df9e2 Mon Sep 17 00:00:00 2001 From: kballou Date: Tue, 26 Jul 2016 12:39:08 -0600 Subject: ExPing: Initial Commit --- lib/exping/application.ex | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/exping/application.ex (limited to 'lib/exping/application.ex') diff --git a/lib/exping/application.ex b/lib/exping/application.ex new file mode 100644 index 0000000..33fce39 --- /dev/null +++ b/lib/exping/application.ex @@ -0,0 +1,14 @@ +defmodule ExPing.Application do + use Application + @moduledoc """ + Application definition for ExPing + """ + + @doc """ + Start ExPing OTP Application + """ + @spec start(any, any) :: {:ok, pid} | {:error, any} + def start(_, _) do + ExPing.Supervisor.start_link() + end +end -- cgit v1.2.1