Method: Azuki::Command::Auth#logout

Defined in:
lib/azuki/command/auth.rb

#logoutObject

auth:logout

clear local authentication credentials

Example:

$ azuki auth:logout Local credentials cleared.



46
47
48
49
50
51
# File 'lib/azuki/command/auth.rb', line 46

def logout
  validate_arguments!

  Azuki::Auth.logout
  display "Local credentials cleared."
end