mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
7 lines
106 B
Rust
7 lines
106 B
Rust
use wasm_bindgen::prelude::*;
|
|
|
|
#[wasm_bindgen]
|
|
pub fn hello() -> String {
|
|
String::from("Hello World")
|
|
}
|