diff --git a/Horario.py b/Horario.py index 63d6028..09a1ab7 100644 --- a/Horario.py +++ b/Horario.py @@ -2,3 +2,11 @@ import time + + +@tasks.loop(hours = 24.0) +async def mensaje_jueves(): + try: + channel = bot.get_channel() + if time.localtime().tm_wday == 3: + await channel.send("Buenos días, hoy es ") \ No newline at end of file