mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-10 01:10:29 +08:00
16 lines
279 B
Go
16 lines
279 B
Go
package waf
|
|
|
|
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
|
|
type IpadminAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *IpadminAction) Init() {
|
|
this.Nav("", "", "ipadmin")
|
|
}
|
|
|
|
func (this *IpadminAction) RunGet(params struct{}) {
|
|
this.Show()
|
|
}
|