12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
export async function echo(input: { text?: string }) {
|
|
return {
|
|
replyText: input.text || 'pong',
|
|
};
|
|
}
|
|
|
|
export async function onMessage() {
|
|
return {
|
|
handled: false,
|
|
};
|
|
}
|