diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2023-10-17 21:17:55 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2023-10-17 22:32:21 -0400 |
| commit | 288205e302d9f6afa06b8602184e983d2080a5b6 (patch) | |
| tree | dfb307e8f3cb82d280e5a0392f11318194e09ef1 /src/result.rs | |
CLI tool for updating Route53 DNS for an ASG.
Diffstat (limited to 'src/result.rs')
| -rw-r--r-- | src/result.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/result.rs b/src/result.rs new file mode 100644 index 0000000..7c607c5 --- /dev/null +++ b/src/result.rs @@ -0,0 +1,4 @@ +use anyhow; + +pub type Error = anyhow::Error; +pub type Result<T> = std::result::Result<T, Error>; |
