pulumi_automation/
lib.rs

1pub mod event;
2pub mod json_reader;
3pub mod local;
4pub mod stack;
5pub mod workspace;
6
7#[derive(Debug)]
8pub enum PulumiError {
9    Other(String),
10}
11
12pub type Result<T> = std::result::Result<T, PulumiError>;