1# frozen_string_literal: true
2module DependencyProxy
3  URL_SUFFIX = '/dependency_proxy/containers'
4  DISTRIBUTION_API_VERSION = 'registry/2.0'
5
6  def self.table_name_prefix
7    'dependency_proxy_'
8  end
9end
10