| 10 | ) |
| 11 | |
| 12 | type ITagModule interface { |
| 13 | // Search 搜索标签 |
| 14 | Search(ctx context.Context, keyword string) ([]*tag_dto.Item, error) |
| 15 | // Create 创建标签 |
| 16 | Create(ctx context.Context, input *tag_dto.CreateTag) error |
| 17 | // Delete 删除标签 |
| 18 | Delete(ctx context.Context, id string) error |
| 19 | } |
| 20 | |
| 21 | func init() { |
| 22 | autowire.Auto[ITagModule](func() reflect.Value { |
no outgoing calls
no test coverage detected