Files
EdgeAdmin/internal/web/actions/default/settings/transfer/index.go

18 lines
353 B
Go

// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package transfer
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "transfer", "")
}
func (this *IndexAction) RunGet(params struct{}) {
this.Show()
}