discord-webhook-cli 0.1.1

Simple CLI for Discord webhooks (not discord bots)
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};


#[derive(Serialize, Deserialize, Debug, Default)]
pub struct WebhookData {
		pub content: String,
		pub username: Option<String>,
}