2025-12-09 18:02:45 +09:00
|
|
|
import { join } from "node:path"
|
2025-12-25 17:04:16 +09:00
|
|
|
import { getOpenCodeStorageDir } from "../../shared/data-path"
|
2025-12-09 18:02:45 +09:00
|
|
|
|
2025-12-25 17:04:16 +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")
|