romm_cli/tui/screens/setup_wizard/mod.rs
1//! First-run setup: server URL, ROMs directory, authentication, test connection, persist config.
2
3mod config;
4mod input;
5mod layout;
6mod render;
7mod run;
8mod types;
9
10#[cfg(test)]
11mod tests;
12
13pub use types::SetupWizard;
14
15impl Default for SetupWizard {
16 fn default() -> Self {
17 Self::new()
18 }
19}