### Basic Ping Command Example Source: https://github.com/sern-handler/handler/blob/main/README.md Demonstrates the creation of a basic slash command using the Sern handler framework. This example includes plugins for publishing the command to the Discord API and restricting its access to bot owners. The command replies with a greeting when executed. ```typescript export default commandModule({ type: CommandType.Slash, //Installed plugin to publish to discord api and allow access to owners only. plugins: [publish(), ownerOnly()], description: 'A ping pong command', execute(ctx) { ctx.reply('Hello owner of the bot'); } }); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.