Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dependency.rb « nuget « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b61c37f58827c6a186b57416e888e5c050c7a83b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    module Nuget
      class Dependency < Grape::Entity
        expose :id, as: :@id
        expose :type, as: :@type
        expose :name, as: :id
        expose :range
      end
    end
  end
end