riking / AutoDelete

A Discord bot that automatically deletes all messages in a designated channel on a rolling basis
Apache License 2.0
326 stars 118 forks source link

Avoid busy waiting: Instead of using select {} for an infinite loop #62

Open Darkchove opened 1 year ago

Darkchove commented 1 year ago

consider using a blocking operation such as time.Sleep to pause the execution of the program indefinitely. This avoids unnecessary CPU usage.