Files
conversation-layer/whatsapp-router/src/helloAgent.ts
2025-06-05 10:01:28 -06:00

6 lines
145 B
TypeScript

import { Conversation } from './types';
export async function helloWorldAgent(_conv: Conversation): Promise<string> {
return 'hello world';
}