Skip to content

chore: remove init command #2198

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
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
chore: remove init command
  • Loading branch information
NathanFlurry committed Mar 14, 2025
commit 7b2f2ccc31b9610a71f107082cc72e03d1d90417
236 changes: 0 additions & 236 deletions packages/toolchain/cli/src/commands/init.rs

This file was deleted.

3 changes: 0 additions & 3 deletions packages/toolchain/cli/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ pub mod config;
pub mod deno;
pub mod deploy;
pub mod environment;
pub mod init;
pub mod login;
pub mod logout;
pub mod manager;
Expand All @@ -18,7 +17,6 @@ use clap::Parser;

#[derive(Parser)]
pub enum SubCommand {
Init(init::Opts),
#[clap(alias = "signin")]
Login(login::Opts),
#[clap(alias = "signout")]
Expand Down Expand Up @@ -78,7 +76,6 @@ pub enum SubCommand {
impl SubCommand {
pub async fn execute(&self) -> Result<()> {
match self {
SubCommand::Init(opts) => opts.execute().await,
SubCommand::Login(opts) => opts.execute().await,
SubCommand::Logout(opts) => opts.execute().await,
SubCommand::Deploy(opts) => opts.execute().await,
Expand Down
Loading