mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 07:23:06 +00:00
7 lines
285 B
TypeScript
7 lines
285 B
TypeScript
import { getAgentDir } from "@earendil-works/pi-coding-agent";
|
|
import { join } from "node:path";
|
|
|
|
export const EXTENSION_NAME = "pi-rtk-optimizer";
|
|
export const CONFIG_DIR = join(getAgentDir(), "extensions", EXTENSION_NAME);
|
|
export const CONFIG_PATH = join(CONFIG_DIR, "config.json");
|