Skip to content

Commit

Permalink
fix: format imports
Browse files Browse the repository at this point in the history
  • Loading branch information
thenodon committed Dec 1, 2023
1 parent 3acaa63 commit 4036738
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
12 changes: 7 additions & 5 deletions aci-connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,25 @@ import (
"crypto/tls"
"crypto/x509"
"fmt"
"strings"

"github.com/gorilla/websocket"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto"
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
"strings"

log4go "github.com/jeanphorn/log4go"
log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
"github.com/umisama/go-regexpcache"
"io/ioutil"
"net/http"
"net/http/cookiejar"
"net/url"
"os"
"time"

log4go "github.com/jeanphorn/log4go"
log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
"github.com/umisama/go-regexpcache"
)

// Create a Prometheus counter for number of reads on the websocket
Expand Down
9 changes: 5 additions & 4 deletions streamer.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,17 @@ import (
"context"
"flag"
"fmt"
"net/http"
"os"
"strconv"
"time"

"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/segmentio/ksuid"
log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
"net/http"
"os"
"strconv"
"time"
)

var version = "undefined"
Expand Down

0 comments on commit 4036738

Please sign in to comment.