Files
oh-my-opencode/packages/web/lib/docs-source.ts
T
2026-05-18 16:44:02 +09:00

10 lines
246 B
TypeScript

import { DOC_SOURCES } from "./docs-content.generated"
export function loadDocSource(file: string): string {
const source = DOC_SOURCES[file]
if (source === undefined) {
throw new Error(`Unknown doc file: ${file}`)
}
return source
}