asimov-cli 25.0.0

ASIMOV Command-Line Interface (CLI)
Documentation
// This is free and unencumbered software released into the public domain.

mod external;
pub use external::*;

mod help;
pub use help::*;

mod help_cmd;
pub use help_cmd::*;

#[cfg(feature = "ask")]
pub mod ask;

#[cfg(feature = "describe")]
pub mod describe;

#[cfg(feature = "fetch")]
pub mod fetch;

#[cfg(feature = "index")]
pub mod index;

#[cfg(feature = "list")]
pub mod list;

#[cfg(feature = "read")]
pub mod read;

#[cfg(feature = "search")]
pub mod search;

#[cfg(feature = "snap")]
pub mod snap;