1//! Upstream source: `../nest-cli/lib/schematics/collection.ts`. 2 3pub type Collection = super::Collection; 4 5pub fn from_name(name: impl Into<String>) -> Collection { 6 super::Collection::from_name(name) 7}