class Mushy::Format

Public Class Methods

details() click to toggle source
# File lib/mushy/fluxs/format.rb, line 5
def self.details
  {
    name: 'Format',
    description: 'Return the event passed to it. This opens the opportunity to further alter results.',
    config: {},
  }
end

Public Instance Methods

process(event, config) click to toggle source
# File lib/mushy/fluxs/format.rb, line 13
def process event, config
  event
end