Ajout de booking pour des One on One avec son coach,

Demande par discord au coach pour confirmer la rencontre
Ajout de message automatisé discord pour avertir des nouveaux match et rappel 24h a l'avance
This commit is contained in:
cedrick2711
2026-07-17 15:32:32 -04:00
parent c795df8e60
commit 4ed42d5ec8
16 changed files with 714 additions and 50 deletions
+8
View File
@@ -88,6 +88,14 @@ def create_app():
from seed import seed_database
seed_database()
# Start the Discord bot for notifications
try:
from discord_bot import start_bot
start_bot()
except Exception as e:
import logging
logging.getLogger(__name__).warning(f"Could not start Discord bot: {e}")
return app