mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-07 07:10:25 +08:00
12 lines
176 B
Protocol Buffer
12 lines
176 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
// ACME任务日志
|
||
|
|
message ACMETaskLog {
|
||
|
|
int64 id = 1;
|
||
|
|
bool isOk = 2;
|
||
|
|
string error = 3;
|
||
|
|
int64 createdAt = 4;
|
||
|
|
}
|