fix go-rados -> go-ceph renames

Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
This commit is contained in:
Noah Watkins 2015-01-14 17:30:46 -08:00
parent 5ef4380a80
commit f5bfcec122
5 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
# go-ceph - Go bindings for Ceph APIs (RBD, RADOS, CephFS)
[![Build Status](https://travis-ci.org/noahdesu/go-ceph.svg)](https://travis-ci.org/noahdesu/go-rados) [![Godoc](http://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/noahdesu/go-rados) [![license](http://img.shields.io/badge/license-MIT-red.svg?style=flat)](https://raw.githubusercontent.com/noahdesu/go-rados/master/LICENSE)
[![Build Status](https://travis-ci.org/noahdesu/go-ceph.svg)](https://travis-ci.org/noahdesu/go-ceph) [![Godoc](http://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/noahdesu/go-ceph) [![license](http://img.shields.io/badge/license-MIT-red.svg?style=flat)](https://raw.githubusercontent.com/noahdesu/go-ceph/master/LICENSE)
This project uses Semantic Versioning (http://semver.org/).

4
doc.go
View File

@ -4,6 +4,6 @@ Set of wrappers around Ceph APIs.
package rados
import (
_ "github.com/noahdesu/go-rados/rados"
_ "github.com/noahdesu/go-rados/rbd"
_ "github.com/noahdesu/go-ceph/rados"
_ "github.com/noahdesu/go-ceph/rbd"
)

View File

@ -2,7 +2,7 @@ package rados_test
import "testing"
//import "bytes"
import "github.com/noahdesu/go-rados/rados"
import "github.com/noahdesu/go-ceph/rados"
import "github.com/stretchr/testify/assert"
import "os"
import "os/exec"

View File

@ -7,7 +7,7 @@ package rbd
import "C"
import (
"github.com/noahdesu/go-rados/rados"
"github.com/noahdesu/go-ceph/rados"
"fmt"
"unsafe"
"bytes"

View File

@ -2,8 +2,8 @@ package rbd_test
import (
"testing"
"github.com/noahdesu/go-rados/rados"
"github.com/noahdesu/go-rados/rbd"
"github.com/noahdesu/go-ceph/rados"
"github.com/noahdesu/go-ceph/rbd"
"github.com/stretchr/testify/assert"
"os/exec"
"sort"