mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-04 02:00:46 +00:00
14 lines
172 B
Rust
14 lines
172 B
Rust
use wasm_bindgen::prelude::*;
|
|
|
|
#[wasm_bindgen(module = "./foo.js")]
|
|
extern {
|
|
fn wut();
|
|
}
|
|
|
|
#[wasm_bindgen(module = "../foo.js")]
|
|
extern {
|
|
fn wut2();
|
|
}
|
|
|
|
fn main() {}
|