gitlab-org--gitlab-foss/app/services/badges/base_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
184 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-03-05 17:51:40 +00:00
module Badges
class BaseService
protected
attr_accessor :params
def initialize(params = {})
@params = params.dup
end
end
end