aboutsummaryrefslogtreecommitdiff
path: root/cogs/general.py
blob: c041f90b02b156bc1f34c33c2d8913dd549a8629 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from discord.ext import commands
import discord
import asyncio

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

    @commands.command(aliases=['add'])
    async def _add(self, ctx):
        oauth_link = "https://discord.com/oauth2/authorize?client_id=740122842988937286&scope=bot"
        await ctx.send(f"To add ziBot to your server, click here: \n {oauth_link}")
    
    @commands.command(aliases=['source'])
    async def sauce(self, ctx):
        git_link = "<PutLinkHere>"
        await ctx.send(f"ziBot's Source Code: \n {git_link}")

def setup(bot):
    bot.add_cog(General(bot))