clapi-cli 0.0.1

Any API, One Command Away™ - Turn any API into simple CLI commands
Documentation
//! # CLAPI - Any API, One Command Away™
//! 
//! Coming soon! The revolutionary CLI that turns any API into simple terminal commands.
//! 
//! Visit <https://clapi.dev> for updates and early access.
//! 
//! ## What is CLAPI?
//! 
//! CLAPI eliminates the complexity of API interactions. No more:
//! - Reading endless documentation
//! - Wrestling with authentication
//! - Crafting complex curl commands
//! 
//! Just type what you want:
//! ```bash
//! clapi github repos
//! clapi openai chat "Hello world"
//! clapi stripe customers list
//! ```

/// Placeholder for the upcoming CLAPI library
pub fn clapi() -> &'static str {
    "CLAPI - Coming soon to a terminal near you! Visit https://clapi.dev"
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        assert!(clapi().contains("CLAPI"));
    }
}