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

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

module API
  module Entities
    class NpmPackageTag < Grape::Entity
      expose :dist_tags, merge: true
    end
  end
end