matcher.go 212 B

123456789
  1. package matcher
  2. import (
  3. . "bp.jydev.jianyu360.cn/BaseService/pushpkg/p"
  4. )
  5. type Matcher interface {
  6. Match(poolSize int, datas *[]map[string]interface{}) (*map[*UserInfo]*SortList, *map[*UserInfo]*[]string)
  7. }