aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTimothy DeHerrera2021-07-14 17:24:37 -0600
committerTimothy DeHerrera2021-07-29 18:17:51 -0600
commit3b6e84d3e274606432876b97b586d06771a3216f (patch)
tree706694149f8880845b96c5c26c013fdbe68c6715 /src
parent1b08f09f490acce89cad902bcf89a6c700556e8c (diff)
make cli opts public
Diffstat (limited to 'src')
-rw-r--r--src/cli.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 3cf64bb..2fdaaec 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -21,7 +21,7 @@ use tokio::process::Command;
/// Simple Rust rewrite of a simple Nix Flake deployment tool
#[derive(Clap, Debug, Clone)]
#[clap(version = "1.0", author = "Serokell <https://serokell.io/>")]
-struct Opts {
+pub struct Opts {
/// The flake to deploy
#[clap(group = "deploy")]
target: Option<String>,