Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ tokio-tungstenite.workspace = true
toml.workspace = true
toml_edit.workspace = true
tracing = { workspace = true, features = ["release_max_level_off"] }
url.workspace = true
walkdir.workspace = true
wasmbin.workspace = true
webbrowser.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ pub fn get_subcommands() -> Vec<Command> {
server::cli(),
subscribe::cli(),
start::cli(),
auth::cli(),
subcommands::version::cli(),
]
}
Expand Down Expand Up @@ -67,6 +68,7 @@ pub async fn exec_subcommand(
"start" => return start::exec(config, paths, args).await,
"login" => login::exec(config, args).await,
"logout" => logout::exec(config, args).await,
"auth" => auth::exec(config, paths, args).await,
"version" => return subcommands::version::exec(paths, root_dir, args).await,
unknown => Err(anyhow::anyhow!("Invalid subcommand: {unknown}")),
}
Expand Down
Loading
Loading