basant307/AI_Governance_Project
048
1/**2 * @license3 * Copyright 2025 Google LLC4 * SPDX-License-Identifier: Apache-2.05 */6 7import { expandHomeDir } from '@qwen-code/qwen-code-core';8 9export function resolvePath(p: string): string {10 return expandHomeDir(p);11}12 