Class: Assistant::AhrefsToolBuilder

Inherits:
Object
  • Object
show all
Defined in:
app/services/assistant/ahrefs_tool_builder.rb

Class Method Summary collapse

Class Method Details

.toolsObject



6
7
8
9
10
11
12
13
14
15
# File 'app/services/assistant/ahrefs_tool_builder.rb', line 6

def tools
  @tools ||= [
    build_ahrefs_overview_tool,
    build_ahrefs_top_pages_tool,
    build_ahrefs_organic_keywords_tool
  ]
rescue StandardError => e
  Rails.logger.warn("[AhrefsToolBuilder] Failed to build Ahrefs tools: #{e.message}")
  []
end