mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-03 04:25:21 +02:00
7 lines
133 B
Ruby
7 lines
133 B
Ruby
class AssistantResponseJob < ApplicationJob
|
|
queue_as :high_priority
|
|
|
|
def perform(message)
|
|
message.request_response
|
|
end
|
|
end
|