diff options
author | Florian Klink <flokli@flokli.de> | 2022-10-28T14·26+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2022-11-02T11·48+0000 |
commit | 64afe59bbec316536fb4ade4f031ed31bf9226fc (patch) | |
tree | 8d52bec145fece7cf45ab0b1bed1b4396084f754 | |
parent | 5392d73816509aadd37df62cc8ce93d8053d3e36 (diff) |
chore(tvix/proto/castore.proto): drop Blob and Chunk r/5231
In ripple, this is used for the internal on-disk format, but it's not suitable for remote consumption. Change-Id: I327361a2254566ac9216e23eaed36dba8fdd283b Reviewed-on: https://cl.tvl.fyi/c/depot/+/7127 Tested-by: BuildkiteCI Reviewed-by: edef <edef@edef.eu>
-rw-r--r-- | tvix/proto/castore.proto | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tvix/proto/castore.proto b/tvix/proto/castore.proto index 14a689ea5ba2..f9cffc3ebed9 100644 --- a/tvix/proto/castore.proto +++ b/tvix/proto/castore.proto @@ -28,13 +28,3 @@ message LinkNode { string name = 1; string target = 2; } - -message Blob { - bytes bao_inline = 3; - repeated Chunk chunks = 4; -} - -message Chunk { - uint64 offset = 1; - uint32 length = 2; -} |