13 lines
196 B
Ruby
13 lines
196 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
module Nuget
|
||
|
class ServiceIndex < Grape::Entity
|
||
|
expose :version
|
||
|
expose :resources
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|