Files
oh-my-opencode/src/index.ts
T

19 lines
427 B
TypeScript
Raw Normal View History

import type { PluginModule } from "@opencode-ai/plugin"
import { createPluginModule } from "./testing/create-plugin-module"
2026-05-15 18:21:04 +09:00
const pluginModule: PluginModule = createPluginModule()
export default pluginModule
export type {
AgentName,
AgentOverrideConfig,
AgentOverrides,
BuiltinCommandName,
HookName,
McpName,
OhMyOpenCodeConfig,
} from "./config"
export type { ConfigLoadError } from "./shared/config-errors"