feat: Start implementation of PAX header based metadata

This commit is contained in:
Felix Pojtinger
2021-11-16 01:15:46 +01:00
parent 03087ff783
commit e72854405e
5 changed files with 159 additions and 196 deletions

View File

@@ -4,11 +4,6 @@ package com.pojtinger.felix.stfs;
option go_package = "github.com/pojntfx/stfs/pkg/api/proto/v1";
message Wrapper {
int64 Version = 1;
Header Header = 2;
}
enum Action {
CREATE = 0;
UPDATE = 1;
@@ -17,6 +12,5 @@ enum Action {
message Header {
Action Action = 1;
string Name = 2;
string Replaces = 3;
string Replaces = 2;
}