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

8 lines
217 B
TypeScript
Raw Normal View History

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