mirror of https://github.com/ceph/go-ceph
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:
parent
b86563db7e
commit
9460b11d88
2
doc.go
2
doc.go
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
Set of wrappers around Ceph APIs.
|
||||
*/
|
||||
package rados
|
||||
package ceph
|
||||
|
||||
import (
|
||||
_ "github.com/ceph/go-ceph/rados"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package rados
|
||||
package ceph
|
||||
|
||||
import (
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
|
Loading…
Reference in New Issue