initial import

This commit is contained in:
2023-10-16 21:57:57 -07:00
commit d9f779f071
7 changed files with 227 additions and 0 deletions

11
proto/homedir.proto Normal file
View File

@@ -0,0 +1,11 @@
syntax = 'proto3';
package sgardpb;
import 'header.proto';
import 'path.proto';
message HomeDir {
Header header = 1;
map<string, Source> files = 5;
};