(
input: EditRegistryEntryInput,
)
| 39 | |
| 40 | #[update(name = "edit_registry_entry")] |
| 41 | async fn edit_registry_entry( |
| 42 | input: EditRegistryEntryInput, |
| 43 | ) -> ApiResult<EditRegistryEntryResponse> { |
| 44 | CONTROLLER.edit_registry_entry(input).await |
| 45 | } |
| 46 | |
| 47 | #[update(name = "delete_registry_entry")] |
| 48 | async fn delete_registry_entry( |
nothing calls this directly
no test coverage detected