mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-06 05:17:49 +00:00
17 lines
368 B
Protocol Buffer
17 lines
368 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package config;
|
|
|
|
import "repos/protobuf/gogoproto/gogo.proto";
|
|
|
|
enum PullOrder {
|
|
option (gogoproto.goproto_enum_stringer) = false;
|
|
|
|
PULL_ORDER_RANDOM = 0;
|
|
PULL_ORDER_ALPHABETIC = 1;
|
|
PULL_ORDER_SMALLEST_FIRST = 2;
|
|
PULL_ORDER_LARGEST_FIRST = 3;
|
|
PULL_ORDER_OLDEST_FIRST = 4;
|
|
PULL_ORDER_NEWEST_FIRST = 5;
|
|
}
|