From 5654e5f14dd42fb36268995323dc526d335d00a9 Mon Sep 17 00:00:00 2001 From: Michael Schaefermeyer Date: Fri, 2 Sep 2016 10:57:38 +0200 Subject: Refactor following credo --- lib/boltex.ex | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'lib/boltex.ex') diff --git a/lib/boltex.ex b/lib/boltex.ex index 992009f..a5b2bbf 100644 --- a/lib/boltex.ex +++ b/lib/boltex.ex @@ -1,4 +1,10 @@ defmodule Boltex do + @moduledoc """ + Elixir library for using the Neo4J Bolt Protocol. + + It supports de- and encoding of Boltex binaries and sending and receiving + of data using the Bolt protocol. + """ alias Boltex.Bolt def test(host, port, query, params \\ %{}, auth \\ nil) do @@ -7,7 +13,7 @@ defmodule Boltex do :ok = Bolt.handshake :gen_tcp, p :ok = Bolt.init :gen_tcp, p, auth - IO.inspect Bolt.run_statement(:gen_tcp, p, query) + Bolt.run_statement(:gen_tcp, p, query) end end -- cgit v1.2.1