mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-06 06:40:27 +08:00
23 lines
335 B
Go
23 lines
335 B
Go
|
|
package tcp
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
||
|
|
)
|
||
|
|
|
||
|
|
type IndexAction struct {
|
||
|
|
actionutils.ParentAction
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *IndexAction) Init() {
|
||
|
|
this.Nav("", "setting", "index")
|
||
|
|
this.SecondMenu("tcp")
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *IndexAction) RunGet(params struct {
|
||
|
|
ServerId int64
|
||
|
|
}) {
|
||
|
|
// TODO
|
||
|
|
|
||
|
|
this.Show()
|
||
|
|
}
|