Skip to main content

fakecloud_ecs/
lib.rs

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