This commit is contained in:
deflax 2024-01-16 18:25:39 +02:00
parent c7d4f0b332
commit f02c4bd93c

View file

@ -53,12 +53,12 @@ async def start_task(ctx):
scheduler.add_job(func=my_task, seconds=5, id='my_task_id', args=(ctx)) scheduler.add_job(func=my_task, seconds=5, id='my_task_id', args=(ctx))
#scheduler.add_job(func=tick, seconds=5, id='tick_id', args=(ctx)) #scheduler.add_job(func=tick, seconds=5, id='tick_id', args=(ctx))
@tasks.loop(seconds=10)
async def my_task(ctx): async def my_task(ctx):
# Your asynchronous task goes here # Your asynchronous task goes here
print() print()
await ctx.channel.send('Running my_task') await ctx.channel.send('Running my_task')
@tasks.loop(seconds=10)
async def tick(ctx): async def tick(ctx):
await ctx.channel.send('Tick! The time is: %s' % datetime.now()) await ctx.channel.send('Tick! The time is: %s' % datetime.now())