debian-mirror-gitlab/lib/api/conan_instance_packages.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
318 B
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
# Conan Instance-Level Package Manager Client API
module API
2021-01-03 14:25:43 +05:30
class ConanInstancePackages < ::API::Base
2023-07-09 08:55:56 +05:30
helpers do
def search_project
nil
end
end
2020-11-24 15:15:51 +05:30
namespace 'packages/conan/v1' do
2021-02-22 17:27:13 +05:30
include ::API::Concerns::Packages::ConanEndpoints
2020-11-24 15:15:51 +05:30
end
end
end