Apply gofmt

This commit is contained in:
Andrew Ayer 2025-05-07 09:58:04 -04:00
parent 8a655b8566
commit 403d5e2f58
5 changed files with 7 additions and 8 deletions

View File

@ -17,8 +17,8 @@ import (
"net/url" "net/url"
"slices" "slices"
"software.sslmate.com/src/certspotter/merkletree"
"software.sslmate.com/src/certspotter/cttypes" "software.sslmate.com/src/certspotter/cttypes"
"software.sslmate.com/src/certspotter/merkletree"
) )
type RFC6962Log struct { type RFC6962Log struct {

View File

@ -22,8 +22,8 @@ import (
"golang.org/x/crypto/cryptobyte" "golang.org/x/crypto/cryptobyte"
"software.sslmate.com/src/certspotter/merkletree"
"software.sslmate.com/src/certspotter/cttypes" "software.sslmate.com/src/certspotter/cttypes"
"software.sslmate.com/src/certspotter/merkletree"
) )
const ( const (

View File

@ -27,4 +27,3 @@ func (v Version) Marshal(b *cryptobyte.Builder) error {
func (v *Version) Unmarshal(s *cryptobyte.String) bool { func (v *Version) Unmarshal(s *cryptobyte.String) bool {
return s.ReadUint8((*uint8)(v)) return s.ReadUint8((*uint8)(v))
} }

View File

@ -12,8 +12,8 @@ package sequencer
import ( import (
"context" "context"
"fmt" "fmt"
"testing"
mathrand "math/rand/v2" mathrand "math/rand/v2"
"testing"
"time" "time"
) )