0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-08 23:31:24 -05:00
denoland-deno/cli/ops/fetch.rs

13 lines
431 B
Rust
Raw Normal View History

2020-01-02 15:13:47 -05:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
use crate::permissions::Permissions;
2019-08-26 14:50:21 +02:00
pub fn init(rt: &mut deno_core::JsRuntime) {
super::reg_json_async(rt, "op_fetch", deno_fetch::op_fetch::<Permissions>);
2020-09-18 15:20:55 +02:00
super::reg_json_async(rt, "op_fetch_read", deno_fetch::op_fetch_read);
super::reg_json_sync(
rt,
"op_create_http_client",
deno_fetch::op_create_http_client::<Permissions>,
2020-09-18 15:20:55 +02:00
);
}