yao/table/process.go
2021-09-28 11:50:37 +08:00

13 lines
219 B
Go

package table
import "github.com/yaoapp/gou"
func init() {
// 注册处理器
gou.RegisterProcessHandler("xiang.table.Search", processSearch)
}
func processSearch(process *gou.Process) interface{} {
return nil
}