kt-template-online-api/scripts/qqbot-plugin/templates/basic/src/index.ts

12 lines
185 B
TypeScript

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