From 5429d2ab901380a92535e31c8cce6646e9b11c4f Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Tue, 23 Jul 2024 19:10:13 -0400 Subject: 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. --- src/lib.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/lib.rs') 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; -- cgit v1.2.3