| 13 | var _ IServiceModelMappingService = (*imlServiceModelMappingService)(nil) |
| 14 | |
| 15 | type imlServiceModelMappingService struct { |
| 16 | store service.IServiceModelMappingStore `autowired:""` |
| 17 | } |
| 18 | |
| 19 | func (i *imlServiceModelMappingService) Delete(ctx context.Context, sid string) error { |
| 20 | _, err := i.store.DeleteWhere(ctx, map[string]interface{}{"sid": sid}) |
nothing calls this directly
no outgoing calls
no test coverage detected