Files
oh-my-opencode/src/hooks/directory-agents-injector/storage.ts
T

9 lines
274 B
TypeScript
Raw Normal View History

import { AGENTS_INJECTOR_STORAGE } from "./constants";
import { createInjectedPathsStorage } from "../../shared/session-injected-paths";
export const {
loadInjectedPaths,
saveInjectedPaths,
clearInjectedPaths,
} = createInjectedPathsStorage(AGENTS_INJECTOR_STORAGE);