Skip to content

Commit 720357f

Browse files
authored
refactor!: remove re-export from tauri::path module (#9104)
1 parent 5829f23 commit 720357f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'tauri': 'major:breaking'
3+
---
4+
5+
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.

core/tauri/src/path/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use serde_repr::{Deserialize_repr, Serialize_repr};
1111

1212
pub(crate) mod plugin;
1313

14-
pub use crate::error::*;
14+
use crate::error::*;
1515

1616
#[cfg(target_os = "android")]
1717
mod android;

0 commit comments

Comments
 (0)