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

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

module API
  module Entities
    class GoModuleVersion < Grape::Entity
      expose :name, as: 'Version'
      expose :time, as: 'Time'
    end
  end
end