mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-05 03:30:25 +08:00
18 lines
340 B
Go
18 lines
340 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package boards
|
|
|
|
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
|
|
type DnsAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *DnsAction) Init() {
|
|
this.Nav("", "", "dns")
|
|
}
|
|
|
|
func (this *DnsAction) RunGet(params struct{}) {
|
|
this.Show()
|
|
}
|