Skip to content
Merged
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
148 changes: 0 additions & 148 deletions lib/bolt/cli/src/commands/create.rs

This file was deleted.

1 change: 0 additions & 1 deletion lib/bolt/cli/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ pub mod admin;
pub mod check;
pub mod cluster;
pub mod config;
pub mod create;
pub mod db;
pub mod generate;
pub mod infra;
Expand Down
3 changes: 0 additions & 3 deletions lib/bolt/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ enum SubCommand {
Logs(logs::LogsOpts),
/// Deploys and tests Rivet services.
Test(test::TestOpts),
/// Creates a new service.
Create(create::CreateOpts),
/// Generates files required for the Rivet project. Seldom used.
#[clap(hide(true), alias = "gen")]
Generate {
Expand Down Expand Up @@ -120,7 +118,6 @@ async fn main_inner() -> Result<std::process::ExitCode> {
SubCommand::Check(command) => command.execute(ctx).await?,
SubCommand::Logs(command) => command.execute(ctx).await?,
SubCommand::Test(command) => command.execute(ctx).await?,
SubCommand::Create(command) => command.execute(ctx).await?,
SubCommand::Generate { command } => command.execute(ctx).await?,
SubCommand::Secret { command } => command.execute(ctx).await?,
SubCommand::Output { command } => command.execute(ctx).await?,
Expand Down
1 change: 0 additions & 1 deletion lib/bolt/core/src/tasks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ pub mod gen;
pub mod infra;
pub mod migrate;
pub mod ssh;
pub mod template;
pub mod test;
pub mod up;
Loading