# frozen_string_literal: true # # Copyright (C) 2018 Harald Sitter . require_relative 'gitlab' class ProjectsFactory # Debian specific project factory. class Debian < Gitlab @url_base = 'https://salsa.debian.org' def self.understand?(type) type == 'salsa.debian.org' end end end