mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 05:00:25 +08:00
17 lines
238 B
Go
17 lines
238 B
Go
package servers
|
|
|
|
import (
|
|
"github.com/iwind/TeaGo/actions"
|
|
)
|
|
|
|
type Helper struct {
|
|
}
|
|
|
|
func NewHelper() *Helper {
|
|
return &Helper{}
|
|
}
|
|
|
|
func (this *Helper) BeforeAction(action *actions.ActionObject) {
|
|
action.Data["teaMenu"] = "servers"
|
|
}
|