mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-05 14:20:25 +08:00
16 lines
198 B
Go
16 lines
198 B
Go
|
|
package api
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/iwind/TeaGo/actions"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Helper struct {
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewHelper() *Helper {
|
||
|
|
return &Helper{}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *Helper) BeforeAction(action *actions.ActionObject) {
|
||
|
|
}
|