mirror of
https://github.com/Icinga/icingadb.git
synced 2026-05-28 04:35:54 -04:00
Fix import order
This commit is contained in:
parent
79981aac07
commit
c97b80a33e
7 changed files with 10 additions and 10 deletions
|
|
@ -5,13 +5,13 @@ package configsync
|
|||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"github.com/go-redis/redis"
|
||||
"github.com/Icinga/icingadb/configobject"
|
||||
"github.com/Icinga/icingadb/connection"
|
||||
"github.com/Icinga/icingadb/ha"
|
||||
"github.com/Icinga/icingadb/jsondecoder"
|
||||
"github.com/Icinga/icingadb/supervisor"
|
||||
"github.com/Icinga/icingadb/utils"
|
||||
"github.com/go-redis/redis"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"regexp"
|
||||
"sync"
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@ package history
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/go-redis/redis"
|
||||
"github.com/google/uuid"
|
||||
"github.com/Icinga/icingadb/connection"
|
||||
"github.com/Icinga/icingadb/supervisor"
|
||||
"github.com/Icinga/icingadb/utils"
|
||||
"github.com/go-redis/redis"
|
||||
"github.com/google/uuid"
|
||||
"github.com/prometheus/client_golang/prometheus"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"strconv"
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@ package statesync
|
|||
|
||||
import (
|
||||
"encoding/hex"
|
||||
"github.com/go-redis/redis"
|
||||
"github.com/Icinga/icingadb/connection"
|
||||
"github.com/Icinga/icingadb/supervisor"
|
||||
"github.com/Icinga/icingadb/utils"
|
||||
"github.com/go-redis/redis"
|
||||
"github.com/prometheus/client_golang/prometheus"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"sync"
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@ import (
|
|||
"database/sql"
|
||||
"errors"
|
||||
"github.com/Icinga/icingadb/config/testbackends"
|
||||
"github.com/go-sql-driver/mysql"
|
||||
"github.com/Icinga/icingadb/utils"
|
||||
"github.com/go-sql-driver/mysql"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/mock"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ package connection
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/go-redis/redis"
|
||||
"github.com/Icinga/icingadb/utils"
|
||||
"github.com/go-redis/redis"
|
||||
"github.com/prometheus/client_golang/prometheus"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"strings"
|
||||
|
|
|
|||
4
ha/ha.go
4
ha/ha.go
|
|
@ -6,10 +6,10 @@ import (
|
|||
"bytes"
|
||||
"encoding/hex"
|
||||
"errors"
|
||||
"github.com/go-redis/redis"
|
||||
"github.com/google/uuid"
|
||||
"github.com/Icinga/icingadb/connection"
|
||||
"github.com/Icinga/icingadb/supervisor"
|
||||
"github.com/go-redis/redis"
|
||||
"github.com/google/uuid"
|
||||
"github.com/prometheus/client_golang/prometheus"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"sync"
|
||||
|
|
|
|||
|
|
@ -5,10 +5,10 @@ package ha
|
|||
import (
|
||||
"crypto/sha1"
|
||||
"github.com/Icinga/icingadb/config/testbackends"
|
||||
"github.com/go-redis/redis"
|
||||
"github.com/google/uuid"
|
||||
"github.com/Icinga/icingadb/connection"
|
||||
"github.com/Icinga/icingadb/supervisor"
|
||||
"github.com/go-redis/redis"
|
||||
"github.com/google/uuid"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
|
|
|||
Loading…
Reference in a new issue