blob: 2a8728afac9432b0ef8ba065af92fee4e8bf6367 (
plain)
1
2
3
4
5
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
const res = await fetch(
"http://localhost:4545/run/045_mod.ts",
);
console.log(`Response http: ${await res.text()}`);
|