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 <jmulligan@redhat.com>
This commit is contained in:
John Mulligan 2019-12-05 14:00:48 -05:00 committed by John Mulligan
parent ab02cd27c0
commit 99de05854c
1 changed files with 0 additions and 5 deletions

5
doc.go
View File

@ -13,8 +13,3 @@ The "cephfs" sub-package wraps APIs that handle CephFS specific functions.
Consult the documentation for each package for additional details. Consult the documentation for each package for additional details.
*/ */
package ceph package ceph
import (
_ "github.com/ceph/go-ceph/rados"
_ "github.com/ceph/go-ceph/rbd"
)