mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 15:20:56 +00:00
14 lines
221 B
Protocol Buffer
14 lines
221 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package config;
|
|
|
|
import "repos/protobuf/gogoproto/gogo.proto";
|
|
|
|
enum Tuning {
|
|
option (gogoproto.goproto_enum_stringer) = false;
|
|
|
|
TUNING_AUTO = 0;
|
|
TUNING_SMALL = 1;
|
|
TUNING_LARGE = 2;
|
|
}
|