(ctx context.Context, words []string, tagIDs [][]string, notAccepted bool, views, answers int, page, size int, order string)
| 29 | type SearchRepo interface { |
| 30 | SearchContents(ctx context.Context, words []string, tagIDs [][]string, userID string, votes, page, size int, order string) (resp []*schema.SearchResult, total int64, err error) |
| 31 | SearchQuestions(ctx context.Context, words []string, tagIDs [][]string, notAccepted bool, views, answers int, page, size int, order string) (resp []*schema.SearchResult, total int64, err error) |
| 32 | SearchAnswers(ctx context.Context, words []string, tagIDs [][]string, accepted bool, questionID string, page, size int, order string) (resp []*schema.SearchResult, total int64, err error) |
| 33 | ParseSearchPluginResult(ctx context.Context, sres []plugin.SearchResult, words []string) (resp []*schema.SearchResult, err error) |
| 34 | } |
no outgoing calls
no test coverage detected