1 2 3 4 5 6 7 8 9
//! Kegani CLI library //! //! Exposes command implementations for integration testing. //! The binary entry point is in `src/main.rs`. pub mod commands; pub mod types; pub use commands::gen::GenKind; pub use types::MigrateAction;