You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
354 B
Protocol Buffer
19 lines
354 B
Protocol Buffer
syntax="proto2";
|
|
|
|
package jraft;
|
|
|
|
option java_package="com.alipay.sofa.jraft.entity";
|
|
option java_outer_classname = "LocalFileMetaOutter";
|
|
|
|
|
|
enum FileSource {
|
|
FILE_SOURCE_LOCAL = 0;
|
|
FILE_SOURCE_REFERENCE = 1;
|
|
}
|
|
|
|
message LocalFileMeta {
|
|
optional bytes user_meta = 1;
|
|
optional FileSource source = 2;
|
|
optional string checksum = 3;
|
|
}
|