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

base_service.rb « badges « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45fc9ac4373c4d147169ae3f611169bd996c830d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Badges
  class BaseService
    protected

    attr_accessor :params

    def initialize(params = {})
      @params = params.dup
    end
  end
end