summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-07-23 19:10:13 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-07-23 19:31:13 -0400
commit5429d2ab901380a92535e31c8cce6646e9b11c4f (patch)
tree760f274979c64185e6bc3710cc85030eb991cb0d /src/lib.rs
parentbd0ab7e0b9ed4584e2973f96c25799aada2b52e9 (diff)
Move CLI glue inside of the lib crate.
This allows me to stop exporting symbols that were only exported for the purposes of making the CLI work. This commit makes the minimum version for the next release 0.2.0, as it retires multiple symbols that are part of the lib crate's API in v0.1.x.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib.rs b/src/lib.rs
index ccfa2ac..7de39bd 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,10 +1,11 @@
-pub mod apply;
+mod apply;
mod autoscaling;
-pub mod aws_context;
-pub mod converge;
+mod aws_context;
+pub mod cli;
+mod converge;
mod dns;
mod ec2;
mod hashable;
-pub mod result;
+mod result;
mod route53;
mod single;