nest-rs-cli 1.0.0

Scaffolding CLI for NestRS — new projects, feature generators, and project health checks.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `nestrs g <kind> <name>` generators — scaffold a feature port, a CRUD
//! resource, or a transport adapter, then auto-wire it into the current app.
//! Shared commit/wiring steps live in [`support`].

mod adapter;
mod cargo;
mod feature;
mod migration;
mod resource;
mod support;

pub use adapter::{AdapterOptions, run as run_adapter};
pub use feature::{FeatureOptions, run as run_feature};
pub use migration::{MigrationOptions, run as run_migration};
pub use resource::{ResourceOptions, run as run_resource};