9 lines
148 B
Ruby
9 lines
148 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Import
|
||
|
class GithubOrgEntity < Grape::Entity
|
||
|
expose :login, as: :name
|
||
|
expose :description
|
||
|
end
|
||
|
end
|