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

18 lines
301 B
Go
Raw Normal View History

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