From 73ce5de59f00249c713ee6afc400221729cc9ecb Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Mon, 4 Jun 2018 13:24:57 -0800 Subject: [PATCH] Added GitHub link --- exts/git.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/exts/git.py b/exts/git.py index 777af7c..1628ffd 100644 --- a/exts/git.py +++ b/exts/git.py @@ -14,10 +14,17 @@ class Git: def __init__(self, bot): self.bot = bot - @commands.group(case_insensitive=True) + @commands.group(case_insensitive=True, invoke_without_command=True) async def git(self, ctx): """Run help git for more info""" - pass + em = discord.Embed(style='rich', + title=f'Here is where you can find my code', + url='https://github.com/dustinpianalto/Geeksbot/tree/development', + description='I am the development branch of Geeksbot. You can find the master branch here:' + 'https://github.com/dustinpianalto/Geeksbot/', + color=embed_color) + em.set_thumbnail(url=f'{ctx.guild.me.avatar_url}') + await ctx.send(embed=em) @git.command() @commands.is_owner()