diff --git a/src-tauri/src/deep_link/mod.rs b/src-tauri/src/deep_link/mod.rs index 165dbfe..262ef93 100644 --- a/src-tauri/src/deep_link/mod.rs +++ b/src-tauri/src/deep_link/mod.rs @@ -21,6 +21,7 @@ static ID: OnceCell = OnceCell::new(); /// /// # Errors /// If ID was already set this functions returns an error containing the ID as String. +#[allow(unused)] pub fn set_identifier(identifier: &str) -> Result<(), String> { ID.set(identifier.to_string()) }