Files
EdgeAdmin/internal/web/actions/default/about/qq.go

16 lines
259 B
Go
Raw Normal View History

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()
}