diff options
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index 5d6542dc5..80296a6cc 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -311,7 +311,6 @@ fn op_require_try_self( } #[op] -fn op_require_read_file(filename: String) -> Result<String, AnyError> { - let contents = std::fs::read_to_string(filename)?; - Ok(contents) +fn op_require_read_file(_filename: String) -> Result<String, AnyError> { + todo!("not implemented"); } |