. ├── bot.py # Point d'entrée principal ├── config/ │ ├── config.py # Configuration (token, prefix) │ └── logger.py # Setup logging ├── cogs/ │ └── example.py # Exemple de cog ├── logs/ # Logs générés ...
The code in this file is written in Python. It runs directly in the terminal; there's no need to open VS Code, PyCharm, etc. When you launch the program (Windows: py main.py, Linux: python3 main.py), ...