Removes the value from a *global* configuration field.
(cx: &Context, RemoveArgs { name }: RemoveArgs<'_>)
| 78 | |
| 79 | /// Removes the value from a *global* configuration field. |
| 80 | pub async fn remove(cx: &Context, RemoveArgs { name }: RemoveArgs<'_>) -> Result<(), Error> { |
| 81 | cx.config_file().set_param(name, None).await |
| 82 | } |
nothing calls this directly
no test coverage detected