diff options
author | Florian Klink <flokli@flokli.de> | 2023-10-17T20·10+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-10-17T20·25+0000 |
commit | 6e8fbc830a28cdca26da1dec583657706b84702f (patch) | |
tree | a73535ae425cfe6d79af4b5ca717ecc12f44cc6a /tvix/castore-go | |
parent | 45d8a78a8b39561622fafdc495edf2dbac49465d (diff) |
chore(tvix/castore-go): rename go module r/6847
`code.tvl.fyi/tvix/castore/protos` now points to a directory that only contains the `.proto` files, while all golang tooling and .pb.go files live in tvix/castore-go. As discussed in https://cl.tvl.fyi/c/depot/+/9787/comment/fc5d155c_1bd38e3a/, the amount of people currently using this is still small, so rename the go.mod now, while it doesn't yet hurt. Change-Id: Ib3c6a2dac2923b3806ebb05be00af66d0da9f698 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9791 Reviewed-by: Connor Brewster <cbrewster@hey.com> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/castore-go')
-rw-r--r-- | tvix/castore-go/castore_test.go | 2 | ||||
-rw-r--r-- | tvix/castore-go/go.mod | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tvix/castore-go/castore_test.go b/tvix/castore-go/castore_test.go index fda87a6cfb66..0d2d65208eff 100644 --- a/tvix/castore-go/castore_test.go +++ b/tvix/castore-go/castore_test.go @@ -3,7 +3,7 @@ package castorev1_test import ( "testing" - castorev1pb "code.tvl.fyi/tvix/castore/protos" + castorev1pb "code.tvl.fyi/tvix/castore-go" "github.com/stretchr/testify/assert" ) diff --git a/tvix/castore-go/go.mod b/tvix/castore-go/go.mod index 9048aa205c46..94310dd2aa6c 100644 --- a/tvix/castore-go/go.mod +++ b/tvix/castore-go/go.mod @@ -1,4 +1,4 @@ -module code.tvl.fyi/tvix/castore/protos +module code.tvl.fyi/tvix/castore-go go 1.19 |