mirror of
https://github.com/denoland/deno.git
synced 2024-12-12 10:37:52 -05:00
12 lines
231 B
Rust
12 lines
231 B
Rust
|
use deno_core::v8::fast_api::FastApiCallbackOptions;
|
||
|
use deno_ops::op;
|
||
|
|
||
|
#[op(fast)]
|
||
|
fn op_fallback(options: Option<&mut FastApiCallbackOptions>) {
|
||
|
if let Some(options) = options {
|
||
|
options.fallback = true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|