From 3d3b6ad411cdc7d2fd06d04a0e6c6cc5ac144246 Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Sun, 14 May 2023 21:26:00 +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)