Skip to content

Commit

Permalink
Merge pull request #3 from lbbniu/master_ui_optimize
Browse files Browse the repository at this point in the history
github.com/coreos/etcd/clientv3 => go.etcd.io/etcd/clientv3
  • Loading branch information
lbbniu authored Nov 28, 2018
2 parents 822f55a + 20dbb48 commit 0a5d2e5
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion bin/csctl/cmd/backup.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"time"

"github.com/coreos/etcd/clientv3"
"go.etcd.io/etcd/clientv3"
"github.com/spf13/cobra"

"github.com/shunfei/cronsun"
Expand Down
2 changes: 1 addition & 1 deletion bin/csctl/cmd/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"strings"

"github.com/coreos/etcd/clientv3"
"go.etcd.io/etcd/clientv3"
"github.com/spf13/cobra"
mgo "gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
Expand Down
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"time"

client "github.com/coreos/etcd/clientv3"
client "go.etcd.io/etcd/clientv3"

"github.com/shunfei/cronsun/conf"
)
Expand Down
2 changes: 1 addition & 1 deletion conf/conf.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"time"

client "github.com/coreos/etcd/clientv3"
client "go.etcd.io/etcd/clientv3"
"github.com/fsnotify/fsnotify"
"github.com/go-gomail/gomail"
"github.com/gofrs/uuid"
Expand Down
2 changes: 1 addition & 1 deletion csctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"errors"

client "github.com/coreos/etcd/clientv3"
client "go.etcd.io/etcd/clientv3"

"github.com/shunfei/cronsun/conf"
)
Expand Down
2 changes: 1 addition & 1 deletion group.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"strings"

client "github.com/coreos/etcd/clientv3"
client "go.etcd.io/etcd/clientv3"

"github.com/shunfei/cronsun/conf"
"github.com/shunfei/cronsun/log"
Expand Down
2 changes: 1 addition & 1 deletion job.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"syscall"
"time"

client "github.com/coreos/etcd/clientv3"
client "go.etcd.io/etcd/clientv3"

"github.com/shunfei/cronsun/conf"
"github.com/shunfei/cronsun/log"
Expand Down
2 changes: 1 addition & 1 deletion node.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"syscall"
"time"

client "github.com/coreos/etcd/clientv3"
client "go.etcd.io/etcd/clientv3"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"

Expand Down
2 changes: 1 addition & 1 deletion node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"syscall"
"time"

client "github.com/coreos/etcd/clientv3"
client "go.etcd.io/etcd/clientv3"
"github.com/shunfei/cronsun"
"github.com/shunfei/cronsun/conf"
"github.com/shunfei/cronsun/log"
Expand Down
2 changes: 1 addition & 1 deletion noticer.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"net/http"
"time"

client "github.com/coreos/etcd/clientv3"
client "go.etcd.io/etcd/clientv3"
"github.com/go-gomail/gomail"

"github.com/shunfei/cronsun/conf"
Expand Down
2 changes: 1 addition & 1 deletion once.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cronsun

import (
client "github.com/coreos/etcd/clientv3"
client "go.etcd.io/etcd/clientv3"

"github.com/shunfei/cronsun/conf"
)
Expand Down
2 changes: 1 addition & 1 deletion proc.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync/atomic"
"time"

client "github.com/coreos/etcd/clientv3"
client "go.etcd.io/etcd/clientv3"

"github.com/shunfei/cronsun/conf"
"github.com/shunfei/cronsun/log"
Expand Down
2 changes: 1 addition & 1 deletion web/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package web
import (
"time"

v3 "github.com/coreos/etcd/clientv3"
v3 "go.etcd.io/etcd/clientv3"

"github.com/shunfei/cronsun"
"github.com/shunfei/cronsun/conf"
Expand Down
2 changes: 1 addition & 1 deletion web/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sort"
"strings"

"github.com/coreos/etcd/clientv3"
"go.etcd.io/etcd/clientv3"
"github.com/gorilla/mux"

"github.com/shunfei/cronsun"
Expand Down
2 changes: 1 addition & 1 deletion web/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"strings"

v3 "github.com/coreos/etcd/clientv3"
v3 "go.etcd.io/etcd/clientv3"
"github.com/gorilla/mux"
"gopkg.in/mgo.v2/bson"

Expand Down
2 changes: 1 addition & 1 deletion web/session/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"errors"
"net/http"

client "github.com/coreos/etcd/clientv3"
client "go.etcd.io/etcd/clientv3"
"github.com/shunfei/cronsun"
"github.com/shunfei/cronsun/conf"
"github.com/shunfei/cronsun/log"
Expand Down

0 comments on commit 0a5d2e5

Please sign in to comment.