Skip to content

Add duck command #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions {{cookiecutter.bot_name}}/cogs/main.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
import discord
from discord.ext import commands
from time import time


class Main(commands.Cog):
def __init__(self, bot):
self.bot = bot

@commands.command()
async def duck(self, ctx):
em = discord.Embed(title='A Duck')
em.set_image(url='https://random-d.uk/api/v2/randomimg?time=' + str(int(time())))
await ctx.send(embed=em)

@commands.command()
async def invite(self, ctx):
""" Gets the bots invite link """
Expand Down