xspring 0.1.3

A tool to scaffold spring boot projects interactively like the vs code extension for scaffolding a spring boot project
Documentation
1
2
3
4
5
6
7
8
use inquire::ui::{Color, RenderConfig, Styled};

// TODO: MAKE FUNCTIONS FOR STYLING INTERACTIVE ELEMENTS
pub fn base_config(prefix: &'static str) -> RenderConfig<'static> {
    RenderConfig::default()
        .with_prompt_prefix(Styled::new(prefix))
        .with_answered_prompt_prefix(Styled::new("").with_fg(Color::LightGreen))
}