context7-cli 0.2.2

CLI client for the Context7 API — search libraries and documentation from the terminal
Documentation
1
2
3
4
5
6
7
8
use anyhow::Result;

#[tokio::main(flavor = "multi_thread", worker_threads = 4)]
async fn main() -> Result<()> {
    // Initialise logging and keep GuardaLog alive until end of main() for flush
    let _guarda_log = context7_cli::inicializar_logging()?;
    context7_cli::run().await
}