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

26 lines
553 B
Python

import logging
from discord.ext import commands
from main import strings
from lib import checks
logs = logging.getLogger('Racu.Core')
class PingCog(commands.Cog):
def __init__(self, client):
self.client = 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))