Files
oh-my-opencode/src/features/hook-message-injector/constants.ts
T

7 lines
277 B
TypeScript
Raw Normal View History

2025-12-09 18:02:45 +09:00
import { join } from "node:path"
import { getOpenCodeStorageDir } from "../../shared/data-path"
2025-12-09 18:02:45 +09:00
export const OPENCODE_STORAGE = getOpenCodeStorageDir()
2025-12-09 18:02:45 +09:00
export const MESSAGE_STORAGE = join(OPENCODE_STORAGE, "message")
export const PART_STORAGE = join(OPENCODE_STORAGE, "part")