Fixed code formatting and import order using goimports (#167)

This commit is contained in:
Christian Muehlhaeuser 2019-07-19 13:07:15 +02:00 committed by Olivier Poitrey
parent 77a1695358
commit 42d101e9f7
2 changed files with 6 additions and 5 deletions

View File

@ -20,11 +20,12 @@ import (
"bytes" "bytes"
"encoding/json" "encoding/json"
"fmt" "fmt"
"io"
"strings"
"github.com/coreos/go-systemd/journal" "github.com/coreos/go-systemd/journal"
"github.com/rs/zerolog" "github.com/rs/zerolog"
"github.com/rs/zerolog/internal/cbor" "github.com/rs/zerolog/internal/cbor"
"io"
"strings"
) )
const defaultJournalDPrio = journal.PriNotice const defaultJournalDPrio = journal.PriNotice