(ctx context.Context, id string)
| 303 | } |
| 304 | |
| 305 | func (i *imlStrategyModule) Enable(ctx context.Context, id string) error { |
| 306 | stop := false |
| 307 | return i.strategyService.Save(ctx, id, &strategy.Edit{IsStop: &stop}) |
| 308 | } |
| 309 | |
| 310 | func (i *imlStrategyModule) Disable(ctx context.Context, id string) error { |
| 311 | stop := true |