Skip to content

Commit

Permalink
fix notmuch feature
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Jul 16, 2023
1 parent 2f4bbcb commit 4e43b97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/config/prelude.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#[cfg(feature = "notmuch-backend")]
use pimalaya_email::backend::NotmuchConfig;
#[cfg(feature = "imap-backend")]
use pimalaya_email::backend::{ImapAuthConfig, ImapConfig};
#[cfg(feature = "smtp-sender")]
use pimalaya_email::sender::{SmtpAuthConfig, SmtpConfig};
#[cfg(feature = "notmuch-backend")]
use pimalaya_email::NotmuchConfig;
use pimalaya_email::{
account::{OAuth2Config, OAuth2Method, OAuth2Scopes, PasswdConfig},
backend::{BackendConfig, MaildirConfig},
Expand Down
2 changes: 1 addition & 1 deletion src/domain/backend/notmuch/wizard.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use anyhow::Result;
use dialoguer::Input;
use pimalaya_email::{BackendConfig, NotmuchBackend, NotmuchConfig};
use pimalaya_email::backend::{BackendConfig, NotmuchBackend, NotmuchConfig};

use crate::config::wizard::THEME;

Expand Down

0 comments on commit 4e43b97

Please sign in to comment.