9 lines
289 B
Python
9 lines
289 B
Python
from discord.ext import commands
|
|
|
|
class Python(commands.Cog):
|
|
"""General commands about python programming"""
|
|
|
|
@commands.command()
|
|
async def resources(self, ctx):
|
|
"""!resources - resources for python programming"""
|
|
await ctx.send("Some resources for you here!") |