You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
509 B
Python
24 lines
509 B
Python
import discord
|
|
from discord.ext import commands
|
|
|
|
from util_functions import *
|
|
|
|
# Hopefully we'll never need logging here
|
|
|
|
|
|
class Random(commands.Cog):
|
|
"""Stuff that the developer couldn't find a better category for"""
|
|
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
@commands.command()
|
|
async def ping(self, ctx):
|
|
"""pong."""
|
|
await ctx.send(
|
|
"pong. :upside_down: :gun:", file=discord.File("images/pong.jpg")
|
|
)
|
|
|
|
def setup(bot):
|
|
bot.add_cog(Random(bot))
|