[SSL证书]ACME任务中列出最后执行结果

This commit is contained in:
刘祥超
2020-11-26 17:26:45 +08:00
parent 638a15f101
commit b5cf3b2366
4 changed files with 242 additions and 34 deletions

View File

@@ -0,0 +1,12 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// ACME任务日志
message ACMETaskLog {
int64 id = 1;
bool isOk = 2;
string error = 3;
int64 createdAt = 4;
}