mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 15:20:56 +00:00
9 lines
138 B
Protocol Buffer
9 lines
138 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package api;
|
||
|
|
||
|
message TokenSet {
|
||
|
// token -> expiry time (epoch nanoseconds)
|
||
|
map<string, int64> tokens = 1;
|
||
|
}
|