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