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 grpc;
14pub mod history;
15pub mod http;
16pub mod jq;
17pub mod jwt;
18pub mod markdown;
19pub mod redact;
20pub mod report;
21pub mod rest;
22pub mod suite;
23pub mod websocket;
24
25pub type Result<T> = std::result::Result<T, anyhow::Error>;
26
27pub const VERSION: &str = env!("CARGO_PKG_VERSION");