chore(imports): Shift around some imports

release-0.4
Brian Waldon 2014-01-18 10:09:54 -08:00
parent a93d60be90
commit c0ff8f6026
3 changed files with 8 additions and 5 deletions

View File

@ -22,11 +22,12 @@ import (
"runtime"
"time"
"github.com/coreos/raft"
"github.com/coreos/etcd/log"
"github.com/coreos/etcd/metrics"
"github.com/coreos/etcd/server"
"github.com/coreos/etcd/store"
"github.com/coreos/raft"
)
func main() {

View File

@ -13,12 +13,13 @@ import (
"strconv"
"time"
"github.com/coreos/raft"
"github.com/gorilla/mux"
etcdErr "github.com/coreos/etcd/error"
"github.com/coreos/etcd/log"
"github.com/coreos/etcd/metrics"
"github.com/coreos/etcd/store"
"github.com/coreos/raft"
"github.com/gorilla/mux"
)
const retryInterval = 10

View File

@ -10,6 +10,9 @@ import (
"strings"
"time"
"github.com/coreos/raft"
"github.com/gorilla/mux"
etcdErr "github.com/coreos/etcd/error"
"github.com/coreos/etcd/log"
"github.com/coreos/etcd/metrics"
@ -18,8 +21,6 @@ import (
"github.com/coreos/etcd/server/v2"
"github.com/coreos/etcd/store"
_ "github.com/coreos/etcd/store/v2"
"github.com/coreos/raft"
"github.com/gorilla/mux"
)
type ServerConfig struct {