module <%= module_name %>

class <%= config[:class_name] %> < CamundaJob
  include <%= module_name %>

  def bpmn_perform(_variables)
    raise StandardError,
      "Please define this method to perform your task which takes a hash of variables and returns a hash of variables"
  end
end

end