You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
295 B
13 lines
295 B
package service |
|
|
|
import ( |
|
"context" |
|
|
|
"go-common/app/interface/main/esports/model" |
|
) |
|
|
|
// Search search video list. |
|
func (s *Service) Search(c context.Context, mid int64, p *model.ParamSearch, buvid string) (rs *model.SearchEsp, err error) { |
|
rs, err = s.dao.Search(c, mid, p, buvid) |
|
return |
|
}
|
|
|