From ece24379634dd209b1280dee84d8c5a9e72a56a3 Mon Sep 17 00:00:00 2001 From: Chang Liu Date: Wed, 31 Jan 2024 10:52:04 -0800 Subject: [PATCH] test --- tasks.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks.ts b/tasks.ts index 2d4b051..97e17de 100644 --- a/tasks.ts +++ b/tasks.ts @@ -2,6 +2,7 @@ import { cpuIntensiveFunc } from './cpu_intensive_func'; import { ioIntensiveFunc } from './io_intensive_func'; import type { Task } from './queue'; +// Tasks export const tasks: Array = [ { id: 1, @@ -27,4 +28,4 @@ export const tasks: Array = [ }); }, }, -]; \ No newline at end of file +];