fakecloud_ecs/lib.rs
1pub(crate) mod placement;
2pub mod runtime;
3pub(crate) mod service;
4pub(crate) mod state;
5
6pub use service::EcsService;
7pub use state::{
8 CapacityProvider, Cluster, EcsSnapshot, EcsState, LifecycleEvent, Service, SharedEcsState,
9 TagEntry, Task, TaskDefinition, ECS_SNAPSHOT_SCHEMA_VERSION,
10};