Skip to content
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