Files
EdgeAdmin/internal/web/actions/default/servers/server/settings/rewrite/index.go

23 lines
343 B
Go
Raw Normal View History

2020-09-26 19:54:02 +08:00
package rewrite
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
)
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "setting", "index")
this.SecondMenu("rewrite")
}
func (this *IndexAction) RunGet(params struct {
ServerId int64
}) {
// TODO
this.Show()
}