mirror of
https://github.com/cloudflare/workers-rs.git
synced 2026-02-01 14:36:45 +00:00
* Prototyping * rpc client example * Prototype WIT codegen * Documentation * Final tweaks
6 lines
120 B
Plaintext
6 lines
120 B
Plaintext
package rpc:calculator;
|
|
|
|
interface calculator {
|
|
// Add two unsigned integers
|
|
add: func(a: u32, b: u32) -> u32;
|
|
} |