feat: Add archiver with filename-embedded headers

This commit is contained in:
Felix Pojtinger
2021-11-15 21:41:42 +01:00
parent e3f038c119
commit 03087ff783
6 changed files with 483 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
syntax = "proto3";
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;
DELETE = 2;
}
message Header {
Action Action = 1;
string Name = 2;
string Replaces = 3;
}