rustack_core/lib.rs
1//! Core types, configuration, and state management for Rustack.
2//!
3//! This crate provides the foundational building blocks shared across all
4//! Rustack service implementations, including multi-account/multi-region
5//! state management, configuration, and common AWS type definitions.
6
7mod config;
8mod error;
9mod state;
10mod types;
11
12pub use config::RustackConfig;
13pub use error::{RustackError, RustackResult};
14pub use state::AccountRegionStore;
15pub use types::{AccountId, AwsRegion};