Fix imports order

This commit is contained in:
Jimmi Dyson 2015-11-27 21:52:29 +00:00
parent 82810f13cd
commit b5d8d0c991
3 changed files with 7 additions and 4 deletions

View File

@ -15,8 +15,9 @@
package collector
import (
"github.com/google/cadvisor/info/v1"
"time"
"github.com/google/cadvisor/info/v1"
)
type Config struct {

View File

@ -15,8 +15,9 @@
package collector
import (
"github.com/google/cadvisor/info/v1"
"time"
"github.com/google/cadvisor/info/v1"
)
// TODO(vmarmol): Export to a custom metrics type when that is available.

View File

@ -16,11 +16,12 @@ package redis
import (
"encoding/json"
"sync"
"time"
redis "github.com/garyburd/redigo/redis"
info "github.com/google/cadvisor/info/v1"
storage "github.com/google/cadvisor/storage"
"sync"
"time"
)
type redisStorage struct {