[SSL证书]实现对ACME任务的增删改查

This commit is contained in:
GoEdgeLab
2020-11-25 21:20:10 +08:00
parent 9b8bc0d8f0
commit 534d4bc404
12 changed files with 2807 additions and 737 deletions

View File

@@ -0,0 +1,10 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message SSLCert {
int64 id = 1;
bool isOn = 2;
string name = 3;
}