Skip to content

Commit

Permalink
mod: Export HandleToken on backend feature
Browse files Browse the repository at this point in the history
  • Loading branch information
arun-mani-j authored and bilelmoussaoui committed Dec 24, 2024
1 parent c6e3ac4 commit 9dc39fa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/desktop/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
mod handle_token;
pub(crate) mod request;
mod session;
#[cfg(feature = "backend")]
pub use self::handle_token::HandleToken;
#[cfg(not(feature = "backend"))]
pub(crate) use self::handle_token::HandleToken;
pub use self::{
request::{Request, Response, ResponseError, ResponseType},
Expand Down

0 comments on commit 9dc39fa

Please sign in to comment.