Skip to content

Commit

Permalink
refactor!: remove re-export from tauri::path module (#9104)
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir authored Mar 6, 2024
1 parent 5829f23 commit 720357f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/path-result-error-rexport.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion core/tauri/src/path/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 720357f

Please sign in to comment.