nestrs-cli-rs 0.1.0

Rust port of the Nest CLI for the nestrs organization.
Documentation
1
2
3
4
5
6
7
//! Upstream source: `../nest-cli/lib/readers/reader.ts`.

pub type ReaderFileLackPermissionsError = super::ReaderFileLackPermissionsError;

pub trait Reader: super::Reader {}

impl<T> Reader for T where T: super::Reader {}