Skip to content

Commit

Permalink
s/Cloud/Platform/
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Fisher <matt.fisher@fermyon.com>
  • Loading branch information
bacongobbler committed Feb 14, 2023
1 parent 12b3224 commit 109948d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
pub mod bindle;
/// Commands for building Spin applications.
pub mod build;
/// Commands for publishing applications to Fermyon Cloud.
/// Commands for publishing applications to the Fermyon Platform.
pub mod cloud;
/// Package and upload an application to Fermyon Cloud.
/// Command to package and upload an application to the Fermyon Platform.
pub mod deploy;
/// Commands for external subcommands (i.e. plugins)
pub mod external;
/// Log into Fermyon Cloud.
/// Command for logging into the Fermyon Platform.
pub mod login;
/// Command for creating a new application.
pub mod new;
Expand Down
6 changes: 3 additions & 3 deletions src/commands/cloud.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ use clap::Subcommand;
use super::deploy::DeployCommand;
use super::login::LoginCommand;

/// Commands for publishing applications to Fermyon Cloud.
/// Commands for publishing applications to the Fermyon Platform.
#[derive(Subcommand, Debug)]
pub enum CloudCommands {
/// Package and upload an application to Fermyon Cloud.
/// Package and upload an application to the Fermyon Platform.
Deploy(DeployCommand),

/// Log into Fermyon Cloud.
/// Log into the Fermyon Platform.
Login(LoginCommand),
}

Expand Down
2 changes: 1 addition & 1 deletion src/commands/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const SPIN_DEPLOY_CHANNEL_NAME: &str = "spin-deploy";

const BINDLE_REGISTRY_URL_PATH: &str = "api/registry";

/// Package and upload to Fermyon Cloud.
/// Package and upload to the Fermyon Platform.
#[derive(Parser, Debug)]
#[clap(about = "Deploy a Spin application")]
pub struct DeployCommand {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/login.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const SPIN_CLIENT_ID: &str = "583e63e9-461f-4fbe-a246-23e0fb1cad10";

const DEFAULT_CLOUD_URL: &str = "https://cloud.fermyon.com/";

/// Log into Fermyon Cloud.
/// Log into the Fermyon Platform.
#[derive(Parser, Debug)]
#[clap(about = "Log into the server")]
pub struct LoginCommand {
Expand Down

0 comments on commit 109948d

Please sign in to comment.