2025-12-11 10:13:04 +09:00
|
|
|
import { join } from "node:path";
|
2025-12-28 16:13:50 +09:00
|
|
|
import { getOpenCodeStorageDir } from "../../shared/data-path";
|
2025-12-11 10:13:04 +09:00
|
|
|
|
2025-12-28 16:13:50 +09:00
|
|
|
export const OPENCODE_STORAGE = getOpenCodeStorageDir();
|
2025-12-11 10:13:04 +09:00
|
|
|
export const README_INJECTOR_STORAGE = join(
|
|
|
|
|
OPENCODE_STORAGE,
|
|
|
|
|
"directory-readme",
|
|
|
|
|
);
|
|
|
|
|
export const README_FILENAME = "README.md";
|