Commit 5dc7eb5b8ecb459a3c32d0fa75e90fc643c8ad06

Stephen Moloney 2016-02-07T21:47:08

added first query

diff --git a/lib/query/hubic/query.ex b/lib/query/hubic/query.ex
new file mode 100644
index 0000000..2049011
--- /dev/null
+++ b/lib/query/hubic/query.ex
@@ -0,0 +1,21 @@
+defmodule ExOvh.Query.Hubic do
+  @moduledoc ~s"""
+    Helps to build queries for the hubic api.
+
+    The raw query can be passed into a client request.
+
+    ## Example
+
+      `scope = ExOvh.hubic_request(ExOvh.Query.Hubic.scope())`
+  """
+
+  @doc """
+  GET /1.0/scope/scope
+  Get the possible scopes for hubiC API
+  """
+ @spec scope() :: ExOvh.Client.raw_query_t
+ def scope(), do: {:get, "/1.0/scope/scope", :nil}
+
+
+
+end
\ No newline at end of file