Skip to main content

api_testing_core/
lib.rs

1//! Shared core primitives for the api-testing CLIs.
2
3pub mod auth_env;
4pub mod cli_endpoint;
5pub mod cli_history;
6pub mod cli_io;
7pub mod cli_report;
8pub mod cli_util;
9pub mod cmd_snippet;
10pub mod config;
11pub mod env_file;
12pub mod graphql;
13pub mod history;
14pub mod http;
15pub mod jq;
16pub mod jwt;
17pub mod markdown;
18pub mod redact;
19pub mod report;
20pub mod rest;
21pub mod suite;
22
23pub type Result<T> = std::result::Result<T, anyhow::Error>;
24
25pub const VERSION: &str = env!("CARGO_PKG_VERSION");