@@ -30,7 +30,7 @@ import (
30
30
31
31
tesseract "github.com/transparency-dev/static-ct"
32
32
"github.com/transparency-dev/static-ct/storage"
33
- gcpTesseract "github.com/transparency-dev/static-ct/storage/gcp"
33
+ "github.com/transparency-dev/static-ct/storage/gcp"
34
34
tessera "github.com/transparency-dev/trillian-tessera"
35
35
gcpTessera "github.com/transparency-dev/trillian-tessera/storage/gcp"
36
36
"golang.org/x/mod/sumdb/note"
@@ -168,12 +168,12 @@ func newGCPStorage(ctx context.Context, signer note.Signer) (*storage.CTStorage,
168
168
return nil , fmt .Errorf ("failed to initialize GCP Tessera appender: %v" , err )
169
169
}
170
170
171
- issuerStorage , err := gcpTesseract .NewIssuerStorage (ctx , * bucket , "fingerprints/" , "application/pkix-cert" )
171
+ issuerStorage , err := gcp .NewIssuerStorage (ctx , * bucket , "fingerprints/" , "application/pkix-cert" )
172
172
if err != nil {
173
173
return nil , fmt .Errorf ("failed to initialize GCP issuer storage: %v" , err )
174
174
}
175
175
176
- beDedupStorage , err := gcpTesseract .NewDedupeStorage (ctx , * spannerDedupDB )
176
+ beDedupStorage , err := gcp .NewDedupeStorage (ctx , * spannerDedupDB )
177
177
if err != nil {
178
178
return nil , fmt .Errorf ("failed to initialize GCP Spanner deduplication database: %v" , err )
179
179
}
0 commit comments