1 个不稳定版本
0.1.0 | 2024年7月4日 |
---|
#1444 in 网页编程
128 每月下载量
5KB
68 行
API Alerts - Rust
这是一个简单的 API,用于向 API Alerts 服务发送警报。
使用方法
extern crate api_alerts;
use apialerts::api_alerts_client;
fn main() {
let mut client = api_alerts_client();
// Set API key (you might want to use an environment variable in practice)
client.set_api_key("{{API_KEY}}".to_string());
// Test sending an alert
let message = "Test alert from Rust library";
let tags = vec!["test".to_string(), "rust".to_string()];
let link = "https://example.com";
match client.send(message, &tags, link) {
Ok(()) => println!("Alert sent successfully"),
Err(e) => eprintln!("Failed to send alert: {}", e),
}
}
依赖关系
~2.3–3.5MB
~95K SLoC