summaryrefslogtreecommitdiff
path: root/app/services/badges/base_service.rb
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