@@ -20,17 +20,12 @@ import (
2020 "context"
2121 "flag"
2222
23- // Register key ProtoHandlers
24- _ "github.com/google/trillian/crypto/keys/der/proto"
25- _ "github.com/google/trillian/crypto/keys/pem/proto"
26- _ "github.com/google/trillian/crypto/keys/pkcs11/proto"
27- "github.com/google/trillian/crypto/keyspb"
28-
2923 "github.com/golang/glog"
3024 "github.com/golang/protobuf/proto"
3125 "github.com/google/trillian"
3226 "github.com/google/trillian/cmd"
3327 "github.com/google/trillian/crypto/keys/der"
28+ "github.com/google/trillian/crypto/keyspb"
3429 "github.com/google/trillian/extension"
3530 "github.com/google/trillian/monitoring"
3631 "github.com/google/trillian/monitoring/prometheus"
@@ -40,13 +35,19 @@ import (
4035 "github.com/google/trillian/util"
4136 "google.golang.org/grpc"
4237
43- _ "net/http/pprof" // Register pprof HTTP handlers
44-
45- _ "github.com/go-sql-driver/mysql" // Load MySQL driver
46- _ "github.com/google/trillian/merkle/objhasher" // Load hashers
47- _ "github.com/google/trillian/merkle/rfc6962" // Load hashers
48-
4938 mysqlq "github.com/google/trillian/quota/mysql"
39+
40+ // Register pprof HTTP handlers
41+ _ "net/http/pprof"
42+ // Load MySQL driver
43+ _ "github.com/go-sql-driver/mysql"
44+ // Register key ProtoHandlers
45+ _ "github.com/google/trillian/crypto/keys/der/proto"
46+ _ "github.com/google/trillian/crypto/keys/pem/proto"
47+ _ "github.com/google/trillian/crypto/keys/pkcs11/proto"
48+ // Load hashers
49+ _ "github.com/google/trillian/merkle/objhasher"
50+ _ "github.com/google/trillian/merkle/rfc6962"
5051)
5152
5253var (
0 commit comments