From b62ea618584bc1573a543fedc9d38fbf637ed0d6 Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Tue, 20 Jun 2023 16:30:44 -0300 Subject: [PATCH] Make TaskManager a struct --- src/croupier.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/croupier.cr b/src/croupier.cr index 5e0abbe..6fbf5a1 100644 --- a/src/croupier.cr +++ b/src/croupier.cr @@ -214,7 +214,7 @@ module Croupier end end - class TaskManager + struct TaskManager # Registry of all tasks @@tasks = {} of String => Croupier::Task