refactor: move troubleshoot-agent to agents directory

- Move troubleshoot-agent.ts to src/agents/
- Update import paths in dependent files

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
kappa
2026-02-05 09:43:07 +09:00
parent 4642c1ff94
commit 8f16de40cc
3 changed files with 7 additions and 7 deletions

View File

@@ -35,7 +35,7 @@ export async function executeManageTroubleshoot(
return '🚫 트러블슈팅 기능을 사용할 수 없습니다.';
}
const { getTroubleshootSession, saveTroubleshootSession, deleteTroubleshootSession } = await import('../troubleshoot-agent');
const { getTroubleshootSession, saveTroubleshootSession, deleteTroubleshootSession } = await import('../agents/troubleshoot-agent');
if (action === 'cancel') {
await deleteTroubleshootSession(env.SESSION_KV, telegramUserId);