tvl-depot/tvix/castore-go
Florian Klink 6e8fbc830a chore(tvix/castore-go): rename go module
`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>
2023-10-17 20:25:45 +00:00
..
castore.go chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
castore.pb.go chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
castore_test.go chore(tvix/castore-go): rename go module 2023-10-17 20:25:45 +00:00
default.nix chore(tvix): move regenerate scripts to passthru 2023-10-17 20:25:45 +00:00
go.mod chore(tvix/castore-go): rename go module 2023-10-17 20:25:45 +00:00
go.sum chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
LICENSE chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
README.md chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
rename_node.go chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
rpc_blobstore.pb.go chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
rpc_blobstore_grpc.pb.go chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
rpc_directory.pb.go chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00
rpc_directory_grpc.pb.go chore(tvix): move castore golang bindings to tvix/castore-go 2023-10-17 19:51:24 +00:00

castore-go

This directory contains generated golang bindings, both for the tvix-castore data models, as well as the gRPC bindings.

They are generated with mg run //tvix:castore-go-generate. These files end with .pb.go, and are ensured to be up to date by a CI check.

Additionally, code useful when interacting with these data structures (ending just with .go) is provided.