Add Start Command

This uses the subcommands feature, it was requested by Conrad.
This commit is contained in:
Sam Poder 2023-06-06 15:50:22 +00:00 committed by Cara Salter
parent 008ea9ec65
commit e8704a2560

View file

@ -19,6 +19,6 @@ async fn try_main() -> Result<()> {
#[tokio::main(flavor = "current_thread")]
async fn main() {
let cli = Cli::parse();
let _cli = Cli::parse();
try_main().await.unwrap();
}