1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! This example shows how to add a new header to the request
//!
//! # Example
//! This plugin demonstrates how to use the http-wasm-guest API to
//! add a custom header (`X-Bar: bar`) to incoming HTTP requests.
//! The plugin implements the `Guest` trait and registers itself
//! in the `main` function.
use ;
/// A simple plugin that adds a custom header to each request.
/// Registers the plugin with the http-wasm runtime.