12 lines
156 B
Protocol Buffer
12 lines
156 B
Protocol Buffer
syntax = 'proto3';
|
|
package sgardpb;
|
|
|
|
import 'header.proto';
|
|
import 'path.proto';
|
|
|
|
message HomeDir {
|
|
Header header = 1;
|
|
|
|
map<string, Source> files = 5;
|
|
};
|