From 99de05854c20d7aaca8add8d646b518be8c7c28d Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 5 Dec 2019 14:00:48 -0500 Subject: [PATCH] ceph: remove unnecessary imports in doc.go The package imports in doc.go were not accomplishing anything and also were not complete (missing cephfs). This removes them. Signed-off-by: John Mulligan --- doc.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/doc.go b/doc.go index 2344717..1fcc2db 100644 --- a/doc.go +++ b/doc.go @@ -13,8 +13,3 @@ The "cephfs" sub-package wraps APIs that handle CephFS specific functions. Consult the documentation for each package for additional details. */ package ceph - -import ( - _ "github.com/ceph/go-ceph/rados" - _ "github.com/ceph/go-ceph/rbd" -)