From 8c8b7861497685b06b6682ce0e718b6fda6b22c7 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Mon, 27 Aug 2018 19:24:48 -0700 Subject: [PATCH] cmd/bolt: update import paths Signed-off-by: Gyuho Lee --- cmd/bolt/main.go | 2 +- cmd/bolt/main_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/bolt/main.go b/cmd/bolt/main.go index eb85e05..2a4ee4d 100644 --- a/cmd/bolt/main.go +++ b/cmd/bolt/main.go @@ -19,7 +19,7 @@ import ( "unicode/utf8" "unsafe" - bolt "github.com/coreos/bbolt" + bolt "github.com/etcd-io/bbolt" ) var ( diff --git a/cmd/bolt/main_test.go b/cmd/bolt/main_test.go index 16bf804..24fe184 100644 --- a/cmd/bolt/main_test.go +++ b/cmd/bolt/main_test.go @@ -12,8 +12,8 @@ import ( "strconv" "testing" - "github.com/coreos/bbolt" - "github.com/coreos/bbolt/cmd/bolt" + "github.com/etcd-io/bbolt" + "github.com/etcd-io/bbolt/cmd/bolt" ) // Ensure the "info" command can print information about a database.