| 16 | ) |
| 17 | |
| 18 | type imlTagModule struct { |
| 19 | tagService tag.ITagService `autowired:""` |
| 20 | } |
| 21 | |
| 22 | func (i *imlTagModule) Search(ctx context.Context, keyword string) ([]*tag_dto.Item, error) { |
| 23 | items, err := i.tagService.Search(ctx, keyword, nil) |
nothing calls this directly
no outgoing calls
no test coverage detected