class Ossy::CLI::Github::Member

Public Instance Methods

call(name:, org:) click to toggle source
# File lib/ossy/cli/github/member.rb, line 17
def call(name:, org:)
  result = client.member(name, org: org)

  if result
    puts result["login"]
  end
end