class Devpad::CLI::Commands::Account::Select::Display

Public Class Methods

new(shell:) click to toggle source
# File lib/devpad/cli/commands/account/select.rb, line 33
def initialize(shell:)
  @shell = shell
end

Public Instance Methods

perform() click to toggle source
# File lib/devpad/cli/commands/account/select.rb, line 37
def perform
  @shell.say "Selected #{Devpad::Account.current} as current account"
end