pimalaya_cli/wizard/mod.rs
1//! Interactive account setup wizards, one submodule per protocol.
2//!
3//! Each wizard prompts for the settings of one account and returns a
4//! `Wizard*Config` the caller maps into its own configuration.
5
6#[cfg(feature = "caldav")]
7pub mod caldav;
8#[cfg(feature = "carddav")]
9pub mod carddav;
10#[cfg(feature = "imap")]
11pub mod imap;
12#[cfg(feature = "jmap")]
13pub mod jmap;
14#[cfg(feature = "smtp")]
15pub mod smtp;