2019-10-21 10:36:01 -04:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-10-28 15:58:35 -04:00
|
|
|
const url_ = Deno.args[1];
|
|
|
|
const res = await fetch(url_);
|
2019-10-27 09:04:42 -04:00
|
|
|
await Deno.copy(Deno.stdout, res.body);
|