Class: Restaurants::GenerateRestaurantMenusWorker
- Inherits:
-
ApplicationWorker
- Object
- ApplicationWorker
- Restaurants::GenerateRestaurantMenusWorker
- Defined in:
- app/workers/restaurants/generate_restaurant_menus_worker.rb
Overview
typed: ignore frozen_string_literal: true
Instance Method Summary collapse
Methods inherited from ApplicationWorker
Instance Method Details
#perform(restaurant_id) ⇒ Object
8 9 10 11 |
# File 'app/workers/restaurants/generate_restaurant_menus_worker.rb', line 8 def perform(restaurant_id) = GenerateRestaurantMenuService.new(restaurant_id) .execute end |