/rust-whatsapp

This is a RUST Library that helps you send messages using pre-made templates on WhatsApp cloud API.

Primary LanguageRustMIT LicenseMIT

rust-whatsapp [WIP]

Rust implementation of go-whatsapp

// Example usage:

fn main() {
    
    let mut template = Template::new("example_template".to_string(), LanguageCode::English);

    template.add_header("Daniel");
    template.add_body("Daniel");
    template.add_body("3243");
    template.add_body("30");

}