Skip to content

Commit 795a4e6

Browse files
committed
's|github.com/transparency-dev/trillian-tessera/personalities/sctfe|github.com/transparency-dev/static-ct|g'
1 parent d0c83ad commit 795a4e6

14 files changed

+18
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To re-generate these files, first install the right tools:
2727

2828
Then, generate the files:
2929
```bash
30-
cd $(go list -f '{{ .Dir }}' github.com/transparency-dev/trillian-tessera/personalities/sctfe); \
30+
cd $(go list -f '{{ .Dir }}' github.com/transparency-dev/static-ct); \
3131
go generate -x ./... # hunts for //go:generate comments and runs them
3232
```
3333

cert_checker_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"github.com/google/certificate-transparency-go/x509"
2626
"github.com/google/certificate-transparency-go/x509/pkix"
2727
"github.com/google/certificate-transparency-go/x509util"
28-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe/testdata"
28+
"github.com/transparency-dev/static-ct/testdata"
2929
)
3030

3131
func wipeExtensions(cert *x509.Certificate) *x509.Certificate {

ct_server_gcp/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ import (
3434
"github.com/prometheus/client_golang/prometheus/promhttp"
3535
"github.com/rs/cors"
3636
tessera "github.com/transparency-dev/trillian-tessera"
37-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe"
38-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe/modules/dedup"
39-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe/storage/bbolt"
40-
gcpSCTFE "github.com/transparency-dev/trillian-tessera/personalities/sctfe/storage/gcp"
37+
"github.com/transparency-dev/static-ct"
38+
"github.com/transparency-dev/static-ct/modules/dedup"
39+
"github.com/transparency-dev/static-ct/storage/bbolt"
40+
gcpSCTFE "github.com/transparency-dev/static-ct/storage/gcp"
4141
gcpTessera "github.com/transparency-dev/trillian-tessera/storage/gcp"
4242
"golang.org/x/mod/sumdb/note"
4343
"k8s.io/klog/v2"

handlers_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ import (
3636
"github.com/google/go-cmp/cmp/cmpopts"
3737
"github.com/google/trillian/monitoring"
3838
"github.com/transparency-dev/trillian-tessera/ctonly"
39-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe/mockstorage"
40-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe/testdata"
39+
"github.com/transparency-dev/static-ct/mockstorage"
40+
"github.com/transparency-dev/static-ct/testdata"
4141
"google.golang.org/grpc/codes"
4242
"google.golang.org/grpc/status"
4343
"google.golang.org/protobuf/proto"

mockstorage/gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
// Package mockclient provides a mockable version of the Trillian log client API.
1616
package mockstorage
1717

18-
//go:generate mockgen -package mockstorage -destination mock_ct_storage.go github.com/transparency-dev/trillian-tessera/personalities/sctfe Storage
18+
//go:generate mockgen -package mockstorage -destination mock_ct_storage.go github.com/transparency-dev/static-ct Storage

mockstorage/mock_ct_storage.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto_gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
package sctfe
55

6-
//go:generate sh -c "protoc -I=. -I$(go list -f '{{ .Dir }}' github.com/google/trillian) -I$(go list -f '{{ .Dir }}' github.com/transparency-dev/trillian-tessera/personalities/sctfe) --go_out=paths=source_relative:. configpb/config.proto"
6+
//go:generate sh -c "protoc -I=. -I$(go list -f '{{ .Dir }}' github.com/google/trillian) -I$(go list -f '{{ .Dir }}' github.com/transparency-dev/static-ct) --go_out=paths=source_relative:. configpb/config.proto"

serialize.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424

2525
"github.com/google/certificate-transparency-go/tls"
2626
"github.com/transparency-dev/formats/log"
27-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe/modules/dedup"
27+
"github.com/transparency-dev/static-ct/modules/dedup"
2828
"golang.org/x/crypto/cryptobyte"
2929
"golang.org/x/mod/sumdb/note"
3030

serialize_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"github.com/google/certificate-transparency-go/x509"
2424
"github.com/google/certificate-transparency-go/x509util"
2525
"github.com/kylelemons/godebug/pretty"
26-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe/testdata"
26+
"github.com/transparency-dev/static-ct/testdata"
2727

2828
ct "github.com/google/certificate-transparency-go"
2929
)

storage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"github.com/google/certificate-transparency-go/x509"
2525
tessera "github.com/transparency-dev/trillian-tessera"
2626
"github.com/transparency-dev/trillian-tessera/ctonly"
27-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe/modules/dedup"
27+
"github.com/transparency-dev/static-ct/modules/dedup"
2828
"k8s.io/klog/v2"
2929
)
3030

storage/bbolt/dedup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
"encoding/hex"
3232
"fmt"
3333

34-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe/modules/dedup"
34+
"github.com/transparency-dev/static-ct/modules/dedup"
3535

3636
bolt "go.etcd.io/bbolt"
3737
"k8s.io/klog/v2"

storage/gcp/dedup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020

2121
"cloud.google.com/go/spanner"
2222
"cloud.google.com/go/spanner/apiv1/spannerpb"
23-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe/modules/dedup"
23+
"github.com/transparency-dev/static-ct/modules/dedup"
2424
"google.golang.org/grpc/codes"
2525
)
2626

storage/gcp/issuers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"path"
2222

2323
gcs "cloud.google.com/go/storage"
24-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe"
24+
"github.com/transparency-dev/static-ct"
2525
"google.golang.org/api/googleapi"
2626
"google.golang.org/api/iterator"
2727
"k8s.io/klog/v2"

structures_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"testing"
2222
"time"
2323

24-
"github.com/transparency-dev/trillian-tessera/personalities/sctfe/testdata"
24+
"github.com/transparency-dev/static-ct/testdata"
2525
)
2626

2727
var (

0 commit comments

Comments
 (0)