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