Files
EdgeAdmin/internal/web/actions/default/servers/server/settings/http/index.go
2020-08-21 12:32:16 +08:00

21 lines
329 B
Go

package server
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
)
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "setting", "index")
this.SecondMenu("http")
}
func (this *IndexAction) RunGet(params struct {
ServerId int64
}) {
this.Show()
}