pkg/remotestorage: fix import paths

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyuho Lee 2018-05-16 15:28:34 -07:00
parent 7c5af8c501
commit d0895d2280
1 changed files with 3 additions and 1 deletions

View File

@ -19,6 +19,8 @@ import (
"log"
"github.com/coreos/dbtester/pkg/remotestorage"
"go.uber.org/zap"
)
func main() {
@ -26,7 +28,7 @@ func main() {
if err != nil {
log.Fatal(err)
}
u, err := remotestorage.NewGoogleCloudStorage(zap.Example(), kbs, "etcd-development")
u, err := remotestorage.NewGoogleCloudStorage(zap.NewExample(), kbs, "etcd-development")
if err != nil {
log.Fatal(err)
}