mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-02 11:50:28 +08:00
16 lines
259 B
Go
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()
|
|
}
|