mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 07:11:08 +00:00
15 lines
266 B
Protocol Buffer
15 lines
266 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package config;
|
|
|
|
import "repos/protobuf/gogoproto/gogo.proto";
|
|
|
|
import "ext.proto";
|
|
|
|
enum AuthMode {
|
|
option (gogoproto.goproto_enum_stringer) = false;
|
|
|
|
AUTH_MODE_STATIC = 0;
|
|
AUTH_MODE_LDAP = 1 [(ext.enumgoname) = "AuthModeLDAP"];
|
|
}
|