| 13 | var _ ILocalModelService = &imlLocalModelService{} |
| 14 | |
| 15 | type imlLocalModelService struct { |
| 16 | store ai.ILocalModelStore `autowired:""` |
| 17 | universally.IServiceGet[LocalModel] |
| 18 | universally.IServiceCreate[CreateLocalModel] |
| 19 | universally.IServiceEdit[EditLocalModel] |
| 20 | universally.IServiceDelete |
| 21 | } |
| 22 | |
| 23 | func (i *imlLocalModelService) UpdateProvider(ctx context.Context, provider string, ids ...string) error { |
| 24 | _, err := i.store.UpdateField(ctx, "provider", provider, "uuid in (?)", ids) |
nothing calls this directly
no outgoing calls
no test coverage detected