jetstream 16.0.0

Jetstream is a RPC framework for Rust, based on the 9P protocol and QUIC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# JetStream Cloudflare

Let's say you've defined a service like so

```rs
{{#include ../components/jetstream_radar/src/lib.rs}}
```
The glue code for running it on Cloudflare Workers is
```rs
{{#include ../components/jetstream_radar/src/server.rs}}
```
The code for connecting to it is as follows:
```rs
{{#include ../components/jetstream_radar/src/bin/client.rs}}
```