atlas_local/lib.rs
1#![doc = include_str!("../README.md")]
2#![deny(clippy::unwrap_used)]
3#![deny(clippy::expect_used)]
4#![deny(clippy::panic)]
5
6pub mod client;
7pub mod docker;
8pub mod models;
9
10#[cfg(test)]
11pub mod test_utils;
12
13// Re-export the main types for convenience
14pub use client::{
15 Client, CreateDeploymentError, DeleteDeploymentError, GetConnectionStringError,
16 GetDeploymentError, GetDeploymentIdError, GetLogsError, PullImageError,
17};