Used goimports to fix import order (#2682)

Keeps the list sorted and prevents future merge conflicts.
This commit is contained in:
Christian Muehlhaeuser
2019-07-19 06:05:49 +02:00
committed by Matt Holt
parent d411b7d087
commit 3856ad03b0
13 changed files with 14 additions and 14 deletions

View File

@@ -23,8 +23,8 @@ import (
"strings"
"sync"
gsyslog "github.com/hashicorp/go-syslog"
"github.com/caddyserver/caddy"
gsyslog "github.com/hashicorp/go-syslog"
)
var remoteSyslogPrefixes = map[string]string{

View File

@@ -31,11 +31,11 @@ import (
"strings"
"time"
"github.com/lucas-clemente/quic-go/h2quic"
"github.com/caddyserver/caddy"
"github.com/caddyserver/caddy/caddyhttp/staticfiles"
"github.com/caddyserver/caddy/caddytls"
"github.com/caddyserver/caddy/telemetry"
"github.com/lucas-clemente/quic-go/h2quic"
)
// Server is the HTTP server implementation.