aboutsummaryrefslogtreecommitdiff
path: root/bot/bot.py
blob: 4e1c884c2a807678ff55c5eae6fbc61b52430932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from discord.ext import commands

from bot.config import Config

bot = commands.Bot(command_prefix=commands.when_mentioned_or('!'))

name = "Bot Name"
description = "Bot Description"


@bot.command()
async def hello(ctx: commands.Context):
    await ctx.send('Hello, World')


def main():
    bot.run(Config.token)