(ctx context.Context, expression string)
| 14 | |
| 15 | type SearchService interface { |
| 16 | SearchPosts(ctx context.Context, expression string) ([]domain.PostSearch, error) |
| 17 | SearchUsers(ctx context.Context, expression string) ([]domain.UserSearch, error) |
| 18 | SearchComments(ctx context.Context, expression string) ([]domain.CommentSearch, error) |
| 19 | } |
no outgoing calls
no test coverage detected