diff options
author | Timothy DeHerrera | 2021-07-14 17:24:37 -0600 |
---|---|---|
committer | Timothy DeHerrera | 2021-07-29 18:17:51 -0600 |
commit | 3b6e84d3e274606432876b97b586d06771a3216f (patch) | |
tree | 706694149f8880845b96c5c26c013fdbe68c6715 | |
parent | 1b08f09f490acce89cad902bcf89a6c700556e8c (diff) |
make cli opts public
-rw-r--r-- | src/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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>, |