libwisp/lib.rs
1#![allow(non_snake_case)]
2#![allow(unused_imports)]
3// ^^ for some reason,
4// client.rs throws
5// warning about unused
6// imports but when i remove
7// them it complains about not
8// having said imports :/
9
10pub mod types;
11pub mod client;
12pub mod http;
13pub mod pkt;
14
15pub use pkt::{WispSendPkt, WispReadPkt};
16pub use types::{WispContext, ConnectionType, WispPktType};
17pub use client::{WispSetServer, WispGetServer, WispSetConnectionType, WispGetConnectionType, WispSwitchServer, WispClose};
18pub use http::{WispHTTPRequest, WispHTTPResponse, WispHTTPMethod};