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

16 lines
271 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 IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "", "cert")
}
func (this *IndexAction) RunGet(params struct{}) {
this.Show()
}