From abac45bbadfd358ffbbe9b6ae0ce2b2ae10b9da0 Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Thu, 20 Apr 2023 00:36:41 +0200 Subject: [PATCH] use correct TOML url Signed-off-by: Sam Therapy --- custom/toml/toml.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/toml/toml.ts b/custom/toml/toml.ts index 7789bc0..341740e 100644 --- a/custom/toml/toml.ts +++ b/custom/toml/toml.ts @@ -1,4 +1,4 @@ -import { parse } from "std/encoding/toml.ts" +import { parse } from "std/toml/mod.ts" export default async function toml(path: string | URL) { const content = await Deno.readTextFile(path)