实现对ACME用户的增删改

This commit is contained in:
GoEdgeLab
2020-11-24 17:36:42 +08:00
parent 8e97b5f512
commit e2a415faa3
84 changed files with 497 additions and 174 deletions

View File

@@ -0,0 +1,15 @@
package acme
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type CreateAction struct {
actionutils.ParentAction
}
func (this *CreateAction) Init() {
this.Nav("", "", "")
}
func (this *CreateAction) RunGet(params struct{}) {
this.Show()
}