Files
EdgeAdmin/internal/web/actions/default/about/qq.go
2020-10-15 16:41:32 +08:00

16 lines
259 B
Go

package about
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type QqAction struct {
actionutils.ParentAction
}
func (this *QqAction) Init() {
this.Nav("", "", "")
}
func (this *QqAction) RunGet(params struct{}) {
this.Show()
}