mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-24 04:01:10 -04:00
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import { define } from "@opencode-ai/plugin/v2/effect"
|
|
import { Effect } from "effect"
|
|
|
|
export default define({
|
|
id: "failing-plugin",
|
|
effect: () => Effect.die("plugin failed"),
|
|
})
|