mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 17:08:32 +00:00
20 lines
288 B
Ruby
20 lines
288 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Mailgun
|
|
module WebhookProcessors
|
|
class Base
|
|
def initialize(payload)
|
|
@payload = payload || {}
|
|
end
|
|
|
|
def execute; end
|
|
|
|
private
|
|
|
|
attr_reader :payload
|
|
end
|
|
end
|
|
end
|
|
end
|