Disabled warning on unused import warning because the import is needed to be mapped to an enum in the UDL file

This commit is contained in:
Abdelilah El Aissaoui 2023-09-21 21:19:47 +02:00
parent 068f42b6e0
commit aa80638742
No known key found for this signature in database
GPG key ID: 7587FC860F594869

View file

@ -3,9 +3,7 @@ mod watch_directory;
use watch_directory::{ * };
use ssh::{ * };
#[allow(unused_imports)]
#[allow(unused_imports)] // Needed to map it to the enum in the UDL file
use libssh_rs::AuthStatus;
uniffi::include_scaffolding!("gitnuro");