()
| 156 | } |
| 157 | |
| 158 | func (i *imlLocalModelInstallStateService) OnComplete() { |
| 159 | i.IServiceGet = universally.NewGet[LocalModelInstallState, ai.LocalModelInstallState](i.store, i.fromEntity) |
| 160 | i.IServiceCreate = universally.NewCreator[CreateLocalModelInstallState, ai.LocalModelInstallState](i.store, "ai_local_model_install_state", i.createEntityHandler, i.uniquestHandler, i.labelHandler) |
| 161 | i.IServiceEdit = universally.NewEdit[EditLocalModelInstallState, ai.LocalModelInstallState](i.store, i.updateHandler, i.labelHandler) |
| 162 | i.IServiceDelete = universally.NewDelete[ai.LocalModelInstallState](i.store) |
| 163 | } |
| 164 | |
| 165 | func (i *imlLocalModelInstallStateService) fromEntity(e *ai.LocalModelInstallState) *LocalModelInstallState { |
| 166 | return &LocalModelInstallState{ |
nothing calls this directly
no test coverage detected