rustack-core 0.9.0

Core types, configuration, and state management for Rustack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core types, configuration, and state management for Rustack.
//!
//! This crate provides the foundational building blocks shared across all
//! Rustack service implementations, including multi-account/multi-region
//! state management, configuration, and common AWS type definitions.

mod config;
mod error;
mod state;
mod types;

pub use config::RustackConfig;
pub use error::{RustackError, RustackResult};
pub use state::AccountRegionStore;
pub use types::{AccountId, AwsRegion};