CJ_Clippy af8f58940a
Some checks failed
ci / build (push) Has been cancelled
capture progress
2024-07-22 18:59:41 -08:00

7 lines
199 B
TypeScript

import { log } from '@temporalio/activity';
export async function activityB(name: string): Promise<string> {
log.info('hello from activityB', { name });
return `ActivityB result: B-${name}!`;
}