feat(app): use tailwind css

This commit is contained in:
0xJacky 2023-11-28 12:40:04 +08:00
parent b475d8b609
commit 60798b5f4a
No known key found for this signature in database
GPG key ID: B6E4A6E4A561BAF0
8 changed files with 299 additions and 11 deletions

View file

@ -42,9 +42,11 @@ type MyUser struct {
func (u *MyUser) GetEmail() string {
return u.Email
}
func (u *MyUser) GetRegistration() *registration.Resource {
return u.Registration
}
func (u *MyUser) GetPrivateKey() crypto.PrivateKey {
return u.Key
}
@ -74,8 +76,8 @@ func IssueCert(payload *ConfigPayload, logChan chan string, errChan chan error)
}
}()
defer close(logChan)
defer close(errChan)
defer close(logChan)
defer close(errChan)
// Use a channel to receive lego log
logChannel := make(chan []byte, 1024)