1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 22:23:13 +00:00
Lumi/modules/ping.py
2024-02-28 14:01:20 +01:00

26 lines
552 B
Python

import logging
from discord.ext import commands
from main import strings
from utils import checks
logs = logging.getLogger('Racu.Core')
class PingCog(commands.Cog):
def __init__(self, client):
self.bot = client
@commands.slash_command(
name="ping",
description="Simple status check.",
guild_only=True
)
@commands.check(checks.channel)
async def ping(self, ctx):
await ctx.respond(content=strings["ping"].format(ctx.author.name))
def setup(client):
client.add_cog(PingCog(client))