ceph: rename package for go files in root dir

Oddly, probably a historical artifact, the .go files in the root of the
go-ceph tree were named "rados". As rados is one of our sub-packages it
seemed more correct to call the package "ceph".  This was chosen as
"go-ceph" is not a valid identifier in go and since this is already go
code prefixing with "go" seems a bit redundant.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
John Mulligan 2019-12-05 13:49:53 -05:00 committed by John Mulligan
parent b86563db7e
commit 9460b11d88
2 changed files with 2 additions and 2 deletions

2
doc.go
View File

@ -1,7 +1,7 @@
/*
Set of wrappers around Ceph APIs.
*/
package rados
package ceph
import (
_ "github.com/ceph/go-ceph/rados"

View File

@ -1,4 +1,4 @@
package rados
package ceph
import (
"github.com/stretchr/testify/assert"