Skip to content

TobiasDeBruijn/dwbhk-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dwbhk-rs

This is a Rust library for firing a Discord webhook

Features

  • no-panic Disables panic! in the crate
  • blocking Enables reqwest's blocking feature. One can use the blocking methods with the execute_url_sync and execute_sync on WebhookRequest

Usage

Example usage:

let req = WebhookRequestBuilder::new()
    .set_data(WebhookBuilder::new()
        .set_embeds(vec![
            EmbedBuilder::new()
                .set_title("The Embed Title")
                .set_color_hex("#ff0000") // Red
                .set_description("Hello world!")
                .set_fields(vec![
                    EmbedFieldBuilder::new()
                        .set_name("Field Name")
                        .set_value("Field Value")
                        .build()
                    ]
                )
                .build()
            ]
        )
        .build()
    )
    .build();

let url = get_discord_webhook_url();
req.execute_url(&url);

About

Simple Discord Webhook library for Rust

Topics

Resources

License

Stars

Watchers

Forks

Languages