Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
BackupBot/backup_bot/__init__.py

9 lines
176 B
Python
Raw Normal View History

2020-03-27 16:00:12 +01:00
from backup_bot.config import config
from discord.ext import commands
bot = commands.Bot(command_prefix=config.get("prefix"))
import extensions
bot.run(config.get("token"))