# File lib/rhc/commands/domain.rb, line 24
    def create(namespace)
      paragraph { say "Creating domain with namespace '#{namespace}'" }
      rest_client.add_domain(namespace)

      results do
        say "Success!"
        say "You may now create an application using the 'rhc create-app' command"
      end

      0
    end