Commit 9f0a22b037498591cc62477cd71c9bd81203c5f1

Stephen Moloney 2016-02-14T12:44:12

don't start exovh as an application. user adds manually to supervisor tree.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/lib/ex_ovh.ex b/lib/ex_ovh.ex
index 4e43985..75f9d3b 100644
--- a/lib/ex_ovh.ex
+++ b/lib/ex_ovh.ex
@@ -1,13 +1,4 @@
 defmodule ExOvh do
+  @moduledoc :false
   use ExOvh.Client, otp_app: :ex_ovh
-
-  # <<TODO>> Remove application later so that ExOvh is started within a supervision tree on demand
-  use Application
-
-  def start(_type, _args) do
-    LoggingUtils.log_mod_func_line(__ENV__, :debug)
-    __MODULE__.start_link()
-  end
-
-
 end