cloudfoundry/vmc

View on GitHub
lib/vmc/cli/start/logout.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "vmc/cli/start/base"

module VMC::Start
  class Logout < Base
    def precondition
      check_target
    end

    desc "Log out from the target"
    group :start
    def logout
      with_progress("Logging out") do
        remove_target_info
      end
    end
  end
end