alien-core 1.10.6

Deploy software into your customers' cloud accounts and keep it fully managed
Documentation
//! Deployment types and configuration.
//!
//! This module contains all types related to deployment lifecycle management,
//! including status tracking, configuration, state, environment info,
//! domain/certificate metadata, compute backends, and release info.

mod status;
pub use status::*;

mod release;
pub use release::*;

mod environment;
pub use environment::*;

mod state;
pub use state::*;

mod domain;
pub use domain::*;

mod compute;
pub use compute::*;

mod config;
pub use config::*;