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

18 lines
249 B
Go
Raw Normal View History

2021-05-25 15:47:40 +08:00
package ns
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
)
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
}
func (this *IndexAction) RunGet(params struct{}) {
this.Show()
}