import path from "path"; import os from "os"; const CONFIG_FOLDER_PATH = path.join(os.homedir(), ".agentql", "config"); /** * Path constants. Contains paths to the config and debug files. */ const CONFIG_FILE_PATH = path.join(CONFIG_FOLDER_PATH, "config.ini"); const DEBUG_FILE_PATH = path.join(os.homedir(), ".agentql", "debug"); export { CONFIG_FOLDER_PATH, CONFIG_FILE_PATH, DEBUG_FILE_PATH };