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

26 lines
567 B
Python

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