Skip to main content
Dans cette exemple, nous allons créer une commande simple qui affiche un message.
export default createCommand({
  alias: ["hello"],
  run: async (_, ctx) => {
    ctx.twitch.sendMessage({
      message: "Hello World",
    })
  },
})
I