http_type/body/
type.rs

1/// Http body vec
2pub type HttpBodyVec = Vec<u8>;
3
4/// Http body string
5pub type HttpBodyString = String;