Files
EdgeAdmin/internal/web/actions/default/dns/issues/updateServerPopup.go

16 lines
305 B
Go
Raw Normal View History

2020-11-14 09:42:21 +08:00
package issues
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type UpdateServerPopupAction struct {
actionutils.ParentAction
}
func (this *UpdateServerPopupAction) Init() {
this.Nav("", "", "")
}
func (this *UpdateServerPopupAction) RunGet(params struct{}) {
this.Show()
}