9 lines
445 B
TypeScript
9 lines
445 B
TypeScript
// opencode v2 plugin "coja.verbose" — server half. Intentionally empty: all behaviour is in ./tui.ts.
|
|
// A local plugin is a DIRECTORY under ~/.config/opencode/plugins/ whose `server`/`index` and `tui`
|
|
// modules are resolved by name (packages/plugin/src/host.ts resolve()). No imports on purpose:
|
|
// `define()` is an identity helper, and a dependency-free module needs no node_modules.
|
|
export default {
|
|
id: "coja.verbose",
|
|
setup() {},
|
|
}
|