Files
EdgeAdmin/internal/web/actions/default/servers/certs/acme/create.go

16 lines
270 B
Go
Raw Normal View History

2020-11-24 17:36:42 +08:00
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()
}