Files
Gwendolyn/main.py
2024-10-28 13:05:06 +01:00

18 lines
375 B
Python

"""Runs the Gwendolyn bot."""
from gwendolyn import Gwendolyn
from gwendolyn.utils import make_files
def main():
"""Starts the bot"""
make_files()
# Creates the Bot
bot = Gwendolyn()
bot.load_extension("gwendolyn.ext.misc")
bot.start("NzM4NzYwODkyNjczNTU2NTYy.GPjy55.xbYtH20UtCjOl87C-2DEPx2BwFWh2-xn1-9YnE")
if __name__ == "__main__":
main()