create-message-kit 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- package/examples/gm/src/index.ts +0 -1
- package/package.json +1 -1
package/examples/gm/src/index.ts
CHANGED
@@ -3,7 +3,6 @@ import { run, HandlerContext } from "@xmtp/message-kit";
|
|
3
3
|
run(async (context: HandlerContext) => {
|
4
4
|
// Get the message and the address from the sender
|
5
5
|
const { content, sender } = context.message;
|
6
|
-
console.log(content);
|
7
6
|
// To reply, just call `reply` on the HandlerContext.
|
8
7
|
await context.send(`gm`);
|
9
8
|
});
|