Files
oh-my-opencode/src/hooks/directory-readme-injector/constants.ts
T

10 lines
290 B
TypeScript
Raw Normal View History

import { join } from "node:path";
import { getOpenCodeStorageDir } from "../../shared/data-path";
export const OPENCODE_STORAGE = getOpenCodeStorageDir();
export const README_INJECTOR_STORAGE = join(
OPENCODE_STORAGE,
"directory-readme",
);
export const README_FILENAME = "README.md";