class Devpad::CLI::Commands::Account::Current

Public Class Methods

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

Public Instance Methods

execute() click to toggle source
# File lib/devpad/cli/commands/account/current.rb, line 10
def execute
  @shell.say Devpad::Account.current
end