JishoBot/cogs/search.py

18 lines
493 B
Python
Raw Normal View History

2020-08-11 09:09:11 +00:00
import discord
from discord.ext import commands
class Search(commands.Cog):
def __init__(self, bot: commands.Bot):
self.bot = bot
@commands.command(name="search", description="Searches Jisho", usage="<query>", aliases=["s"])
@commands.cooldown(1, 5)
async def search(self, ctx: commands.Context, *, query: str = None):
if query == None:
return
await ctx.send(query)
def setup(bot: commands.Bot):
bot.add_cog(Search(bot))