1pub use event::Event;
2
3mod event {
4 mod body;
5 mod headers;
6 mod host;
7 mod imports;
8 mod method;
9 mod path;
10 mod query;
11 mod r#return;
12 mod user_agent;
13 mod write;
14
15 #[derive(Copy, Clone)]
16 pub struct Event {
17 pub event: u32,
18 }
19
20 pub struct EventBody {
21 pub consumed: bool,
22 pub event: u32,
23 }
24
25 pub struct EventHeaders {
26 pub event: u32,
27 }
28
29 pub struct EventQueries {
30 pub event: u32,
31 }
32}
33
34pub use client::Client;
35
36mod client {
37 mod imports;
38 mod methods;
39 mod new;
40 mod request;
41 mod response;
42 mod send;
43
44 pub struct Client {
45 pub id: u32,
46 }
47}