diff options
| author | Fuwn <[email protected]> | 2021-05-05 11:08:51 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-05 11:08:51 +0000 |
| commit | 2ef2fc8a528cb7953bc599588f09a5ad7ac62d2c (patch) | |
| tree | 06a98fc1af4514c58ff14d634c1a89ec1e415be7 /src/cli.rs | |
| parent | feat(redirect_id): specify custom ip in config (diff) | |
| download | whirl-2ef2fc8a528cb7953bc599588f09a5ad7ac62d2c.tar.xz whirl-2ef2fc8a528cb7953bc599588f09a5ad7ac62d2c.zip | |
feat(global): add a shell-like prompt for interfacing with the server during operation
Diffstat (limited to 'src/cli.rs')
| -rw-r--r-- | src/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ impl Cli { pub async fn execute(matches: ArgMatches<'_>) { if matches.is_present("run") { - run().await.unwrap(); + run().await; } else if let Some(cmd) = matches.subcommand_matches("config") { if cmd.is_present("show") { println!("{:#?}", Config::get().unwrap()); |