From 5bdeadbcf86cc78b260314509c6ea77e7fdcc0dc Mon Sep 17 00:00:00 2001 From: jacoobes Date: Wed, 16 Feb 2022 09:58:08 -0600 Subject: [PATCH] docs(readme.md): updated ping example n --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4517e21..9180138 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ export default { visibility : "private", test : false, type: Sern.CommandType.SLASH | Sern.CommandType.TEXT, - execute : async ({message, interaction}, args) => Ok("pong!") + execute : async ({message, interaction}, args) => "pong!" }; ```