a11ywatch_cli 0.10.15

A11yWatch web accessibility CLI.
1
2
3
4
5
6
7
8
9
#[cfg(feature = "litemode")]
pub mod grpc;

pub mod rest;

#[cfg(feature = "litemode")]
pub(crate) use self::grpc::ApiClient;
#[cfg(not(feature = "litemode"))]
pub(crate) use self::rest::ApiClient;