mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-02 02:36:52 +00:00
12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
import z from "zod/v4"
|
|
|
|
export default {
|
|
description: "foo tool for fooing",
|
|
args: {
|
|
foo: z.string().describe("foo"),
|
|
},
|
|
async execute() {
|
|
return "Hey fuck you!"
|
|
},
|
|
}
|