worker-macros 0.8.1

Macros to support the `worker` crate and remove FFI boilerplate / conversion from user code.
Documentation
1
2
3
4
5
6
use worker_macros::event;

#[event(start)]
fn start(a: u32) {}

fn main() {}