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

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

# Conan Instance-Level Package Manager Client API
module API
  class ConanInstancePackages < ::API::Base
    namespace 'packages/conan/v1' do
      include ::API::Concerns::Packages::ConanEndpoints
    end
  end
end