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/schematics/nest.collection.ts`.

pub type NestCollection = super::NestCollection;
pub type Schematic = super::Schematic;

pub fn create() -> NestCollection {
    super::NestCollection::new()
}

pub fn schematics() -> Vec<Schematic> {
    super::NestCollection::new().get_schematics()
}