dependency.go 196 B

12345678
  1. package dependency
  2. import "icloudapp.cn/tools/service/entity"
  3. type IGroupRes interface {
  4. Info(groupID int64) (*entity.Group, error)
  5. Infos(groupsID ...int64) (map[int64]*entity.Group, error)
  6. }