mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
11 lines
231 B
Rust
11 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() {}
|