mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-10 09:20:24 +08:00
15 lines
240 B
Protocol Buffer
15 lines
240 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
// 版本认证
|
||
|
|
message AuthorityKey {
|
||
|
|
string value = 1;
|
||
|
|
string dayFrom = 2;
|
||
|
|
string dayTo = 3;
|
||
|
|
string hostname = 4;
|
||
|
|
repeated string macAddresses = 5;
|
||
|
|
int64 updatedAt = 6;
|
||
|
|
}
|