Files
EdgeAdmin/internal/web/actions/default/api/helper.go

16 lines
198 B
Go
Raw Normal View History

2020-09-06 16:19:34 +08:00
package api
import (
"github.com/iwind/TeaGo/actions"
)
type Helper struct {
}
func NewHelper() *Helper {
return &Helper{}
}
func (this *Helper) BeforeAction(action *actions.ActionObject) {
}