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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## [Unreleased]
### Changed
- [#88](https://github.com/saas-rs/cli/issues/88) Retire management of SSH Keys
- [#86](https://github.com/saas-rs/cli/issues/86) Upgrade 3 crates

## [0.3.7] - 2025-10-03
Expand Down
7 changes: 0 additions & 7 deletions src/cmd/get/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ pub(super) mod plan;
pub(super) mod project;
pub(super) mod service;
pub(super) mod service_instance;
pub(super) mod ssh_key;

pub use output::output;

Expand Down Expand Up @@ -53,9 +52,6 @@ pub enum Subcommand {

#[command(name = "service-instance", alias = "serviceInstance")]
ServiceInstance(service_instance::Opts),

#[command(name = "ssh-key", alias = "sshKey")]
SshKey(ssh_key::Opts),
}

pub async fn run(subcommand: Subcommand) -> Result<(), Box<dyn std::error::Error>> {
Expand Down Expand Up @@ -90,9 +86,6 @@ pub async fn run(subcommand: Subcommand) -> Result<(), Box<dyn std::error::Error
Subcommand::ServiceInstance(service_instance::Opts { id, output }) => {
service_instance::run(id, output).await?;
}
Subcommand::SshKey(ssh_key::Opts { id, output }) => {
ssh_key::run(id, output).await?;
}
}
Ok(())
}
46 changes: 0 additions & 46 deletions src/cmd/get/ssh_key.rs

This file was deleted.

7 changes: 0 additions & 7 deletions src/cmd/list/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ pub(super) mod plans;
pub(super) mod projects;
pub(super) mod service_instances;
pub(super) mod services;
pub(super) mod ssh_keys;
pub(super) mod transforms;

pub use output::{output, output_empty_result_of_unknown_schema};
Expand Down Expand Up @@ -55,9 +54,6 @@ pub enum Subcommand {

#[command(name = "service-instances", alias = "serviceInstances")]
ServiceInstances(service_instances::Opts),

#[command(name = "ssh-keys", alias = "sshKeys")]
SshKeys(ssh_keys::Opts),
}

pub async fn run(subcommand: Subcommand) -> Result<(), Box<dyn std::error::Error>> {
Expand Down Expand Up @@ -92,9 +88,6 @@ pub async fn run(subcommand: Subcommand) -> Result<(), Box<dyn std::error::Error
Subcommand::ServiceInstances(service_instances::Opts { offset, limit, output }) => {
service_instances::run(offset, limit, output).await?;
}
Subcommand::SshKeys(ssh_keys::Opts { offset, limit, output }) => {
ssh_keys::run(offset, limit, output).await?;
}
}
Ok(())
}
52 changes: 0 additions & 52 deletions src/cmd/list/ssh_keys.rs

This file was deleted.

15 changes: 0 additions & 15 deletions src/kind.rs

This file was deleted.

1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ mod apiclient;
mod cmd;
mod config;
mod consts;
mod kind;
pub(crate) mod protocol;
pub(crate) mod util;

Expand Down
Loading