Discord_Elixir_test/lib/HahaCommands/ping.ex

22 lines
304 B
Elixir
Raw Normal View History

2024-10-12 17:05:40 +02:00
defmodule HahaYes.Commands.Ping do
@moduledoc """
Contain all the function for each commands
"""
alias Nostrum.Api
@doc """
Reply with a simple "Pong!"
## Example
User: h3h3 ping
Bot: Pong!
"""
def execute(msg) do
Api.create_message(msg.channel_id, "Pong!")
end
end