Files
WorldCraft_Discord_Bot/bot.py

12 lines
200 B
Python
Executable File

#!/usr/bin/python
import sys
from discord.ext import commands
import os
import yaml
from bots.discordbot import DiscordBot
if __name__ == "__main__":
bot = DiscordBot(sys.argv[1])
bot.run()