syncthing/proto/lib/config/tuning.proto

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;
}