From 1dbf7ccb4f293b2a7297d82c0f22ef59c90a8c0b Mon Sep 17 00:00:00 2001 From: Egor Manzhula Date: Wed, 3 Jan 2018 00:42:19 +0200 Subject: [PATCH] Uncomment Clone method that was definitely commented by mistake --- database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database.go b/database.go index 5fe1f3ac..48399b64 100644 --- a/database.go +++ b/database.go @@ -38,7 +38,7 @@ type Database interface { // Clone duplicates the current database session. Returns an error if the // clone did not succeed. - // Clone() (Database, error) + Clone() (Database, error) // Ping returns an error if the database manager could not be reached. Ping() error