Nucu-RPG-Bot/src/main.py

14 lines
209 B
Python
Raw Normal View History

2024-01-22 19:36:59 +00:00
import logging
from src.bot.discord.bot import NucuBot
2024-01-20 20:33:34 +00:00
def main():
2024-01-22 19:36:59 +00:00
bot = NucuBot.create()
bot.run("<token here>")
2024-01-20 20:33:34 +00:00
if __name__ == "__main__":
2024-01-22 19:36:59 +00:00
logging.basicConfig(level=logging.INFO)
2024-01-20 20:33:34 +00:00
main()