don't start exovh as an application. user adds manually to supervisor tree.
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