Select the types of activity you want to include in your feed.
1export function buildPong(args: string[]): string { 2 const suffix = args.length > 0 ? ` (${args.join(' ')})` : '' 3 return `pong${suffix}` 4}