An account for many customers

This commit is contained in:
yoan
2024-10-23 16:25:21 +08:00
parent 8bec234fe8
commit 1dca6ecf8d
16 changed files with 286 additions and 3331 deletions

View File

@@ -0,0 +1,17 @@
package domain
import (
"time"
"github.com/go-acme/lego/v4/registration"
)
type AcmeAccount struct {
Id string
Ca string
Email string
Resource *registration.Resource
Key string
Created time.Time
Updated time.Time
}