nestrs-cli-rs 0.1.0

Rust port of the Nest CLI for the nestrs organization.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Upstream source: `../nest-cli/lib/questions/questions.ts`.

pub type Question = super::Question;
pub type QuestionKind = super::QuestionKind;

pub fn generate_input(name: impl Into<String>, message: impl Into<String>) -> Question {
    super::generate_input(name, message)
}

pub fn generate_select(name: impl Into<String>) -> Question {
    super::generate_select(name)
}