# frozen_string_literal: true

module ReleaseTools
  module Project
    module Infrastructure
      module GitlabDedicated
        class Team < Project::BaseProject
          REMOTES = {
            canonical: 'git@gitlab.com:gitlab-com/gl-infra/gitlab-dedicated/team.git'
          }.freeze

          def self.default_branch
            'main'
          end
        end
      end
    end
  end
end
