unofficial_appwrite 1.0.0

wrapper on appwrite api -> https://appwrite.io/docs
Documentation
/// HTTP methods.
pub enum HttpMethod {
    GET,
    POST,
    PUT,
    DELETE,
    PATCH,
}

/// Response Types
pub enum ResponseType {
    /// Transform the response data to JSON object only when the
    /// content-type of response is "application/json" .
    JSON,

    /// Transform the response data to a String encoded with UTF8.
    PLAIN,

    /// Get original bytes, the type of response will be Vec<u8>
    BYTES,
}