20 lines
623 B
Python
20 lines
623 B
Python
import discord
|
|
from discord.ext import commands
|
|
from discord import app_commands
|
|
|
|
class SlashPing(commands.Cog):
|
|
def __init__(self, client):
|
|
self.client = client
|
|
|
|
@commands.Cog.listener()
|
|
async def on_ready(self):
|
|
print("SlashPing.py is ready")
|
|
|
|
@app_commands.command(name="ping", description="Gives the bot latency in ms.")
|
|
async def slashping(self, interaction: discord.Interaction):
|
|
bot_latency = round(self.client.latency * 1000)
|
|
await interaction.response.send_message(f"pong! {bot_latency}ms.")
|
|
|
|
|
|
async def setup(client):
|
|
await client.add_cog(SlashPing(client)) |