| // Copyright 2019-2024 Tauri Programme within The Commons Conservancy | |
| // SPDX-License-Identifier: Apache-2.0 | |
| // SPDX-License-Identifier: MIT | |
| pub enum Error { | |
| PluginInvoke( tauri::plugin::mobile::PluginInvokeError), | |
| Tauri( tauri::Error), | |
| } | |
| pub type Result<T> = std::result::Result<T, Error>; | |