mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
Remove search command (wrong commit oops)
This commit is contained in:
parent
c4540ada50
commit
985ec2ade9
1 changed files with 1 additions and 3 deletions
|
|
@ -12,7 +12,7 @@ use std::{env, fs};
|
||||||
mod cli;
|
mod cli;
|
||||||
mod utils;
|
mod utils;
|
||||||
|
|
||||||
pub use cli::{archive::Archive, download::Download, login::Login, search::Search};
|
pub use cli::{archive::Archive, download::Download, login::Login};
|
||||||
|
|
||||||
#[async_trait::async_trait(?Send)]
|
#[async_trait::async_trait(?Send)]
|
||||||
trait Execute {
|
trait Execute {
|
||||||
|
|
@ -59,7 +59,6 @@ enum Command {
|
||||||
Archive(Archive),
|
Archive(Archive),
|
||||||
Download(Download),
|
Download(Download),
|
||||||
Login(Login),
|
Login(Login),
|
||||||
Search(Search),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Parser)]
|
#[derive(Debug, Parser)]
|
||||||
|
|
@ -165,7 +164,6 @@ pub async fn cli_entrypoint() {
|
||||||
execute_executor(login, ctx).await
|
execute_executor(login, ctx).await
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Command::Search(search) => execute_executor(search, ctx).await,
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue