Change task interval to every second

This commit is contained in:
Dustin Pianalto 2020-05-01 00:29:29 -08:00
parent 6bdd4a0665
commit c555f5d935

View File

@ -79,7 +79,7 @@ func main() {
go utils.LoggingHandler(utils.LoggingChannel)
// Start the task handler in a goroutine
go utils.ProcessTasks(dg, 10)
go utils.ProcessTasks(dg, 1)
fmt.Println("The Bot is now running.")
sc := make(chan os.Signal, 1)