Files
EdgeAdmin/internal/web/actions/default/dashboard/index.go

16 lines
289 B
Go
Raw Normal View History

2020-07-22 22:19:39 +08:00
package dashboard
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "", "")
}
func (this *IndexAction) RunGet(params struct{}) {
this.RedirectURL("/servers")
}