refactor!: remove re-export from tauri::path module (#9104)

This commit is contained in:
Amr Bashir 2024-03-06 23:31:23 +02:00 committed by GitHub
parent 5829f23171
commit 720357fd5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
'tauri': 'major:breaking'
---
Removed `tauri::path::Result` and `tauri::path::Error` which were merely an unintentional re-export of `tauri::Result` and `tauri::Error` so use those instead.

View File

@ -11,7 +11,7 @@ use serde_repr::{Deserialize_repr, Serialize_repr};
pub(crate) mod plugin;
pub use crate::error::*;
use crate::error::*;
#[cfg(target_os = "android")]
mod android;