()
| 164 | } |
| 165 | |
| 166 | func (i *imlStrategyService) OnComplete() { |
| 167 | |
| 168 | i.IServiceCreate = universally.NewCreator[Create, strategy.Strategy](i.store, "strategy", createEntityHandler, uniquestHandler, labelHandler) |
| 169 | |
| 170 | i.IServiceEdit = universally.NewEdit[Edit, strategy.Strategy](i.store, updateHandler, labelHandler) |
| 171 | } |
| 172 | |
| 173 | func labelHandler(e *strategy.Strategy) []string { |
| 174 | return []string{e.Name, e.UUID, e.Desc} |
nothing calls this directly
no test coverage detected