From ea624690070bd88fbad5a1434fa0fe8fc2555798 Mon Sep 17 00:00:00 2001 From: ingalls Date: Thu, 19 Dec 2024 13:03:23 -0700 Subject: [PATCH] typo fix --- task.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task.ts b/task.ts index 6a7a466..a2d4a67 100644 --- a/task.ts +++ b/task.ts @@ -50,7 +50,7 @@ export default class Task extends ETL { } } -await local(new Task(import.meta.ulr), import.meta.url); +await local(new Task(import.meta.url), import.meta.url); export async function handler(event: Event = {}) { return await internal(new Task(import.meta.url), event); }