8 lines
190 B
Rust
8 lines
190 B
Rust
|
use napi::bindgen_prelude::*;
|
||
|
use std::env;
|
||
|
|
||
|
#[napi]
|
||
|
fn get_cwd<T: Fn(String) -> Result<()>>(callback: T) {
|
||
|
callback(env::current_dir().unwrap().to_string_lossy().to_string()).unwrap();
|
||
|
}
|