blob: 65c5594f8faa4701c8ad9b4e4f028b88eb4c742f (
plain)
1
2
3
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
const res = await fetch("http://localhost:4545/std/examples/colors.ts");
console.log(`Response http: ${await res.text()}`);
|