mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:35:40 +08:00
10 lines
237 B
Ruby
Vendored
10 lines
237 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
Fabricator(:ai_tool) do
|
|
name "github tool"
|
|
tool_name "github_tool"
|
|
description "This is a tool for GitHub"
|
|
summary "This is a tool for GitHub"
|
|
script "puts 'Hello, GitHub!'"
|
|
created_by_id 1
|
|
end
|