mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-24 19:22:51 +02:00
13 lines
172 B
Rust
13 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() {}
|