blueprint-remote-providers 0.2.0-alpha.2

Remote service providers for Tangle Blueprints
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core types and utilities for blueprint remote providers

pub mod deployment_target;
pub mod error;
pub mod remote;
pub mod resources;

#[cfg(test)]
pub mod test_utils;

// Re-export commonly used items
pub use deployment_target::{ContainerRuntime, DeploymentConfig, DeploymentTarget};
pub use error::{Error, Result};
pub use remote::{CloudProvider, RemoteClusterManager};
pub use resources::ResourceSpec;