diff options
Diffstat (limited to 'cloud.rb')
-rwxr-xr-x | cloud.rb | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -2,6 +2,7 @@ require 'thor' require_relative 'lib/gce_command' +require_relative 'lib/aws_command' # Don't buffer output to the client STDOUT.sync = true @@ -12,6 +13,9 @@ module OpenShift class CloudCommand < Thor desc 'gce', 'Manages Google Compute Engine assets' subcommand "gce", GceCommand + + desc 'aws', 'Manages Amazon Web Services assets' + subcommand "aws", AwsCommand end end end |