实现对ACME用户的增删改

This commit is contained in:
刘祥超
2020-11-24 17:36:51 +08:00
parent 88f809d9a8
commit 3b921809fe
6 changed files with 1822 additions and 49 deletions

View File

@@ -0,0 +1,11 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message ACMEUser {
int64 id = 1;
string email = 2;
string description = 3;
int64 createdAt = 4;
}