This commit is contained in:
2025-07-30 22:13:58 +02:00
parent af48990cf7
commit 357790ac34
21 changed files with 4257 additions and 110 deletions

25
examples/Cargo.toml Normal file
View File

@@ -0,0 +1,25 @@
[package]
name = "node_notifier_examples"
version = "0.1.0"
edition = "2021"
[[example]]
name = "basic_monitoring"
path = "basic_monitoring.rs"
[[example]]
name = "custom_thresholds"
path = "custom_thresholds.rs"
[[example]]
name = "discord_notifications"
path = "discord_notifications.rs"
[[example]]
name = "continuous_monitoring"
path = "continuous_monitoring.rs"
[dependencies]
discord_client = { path = "../discord_client" }
system_monitor = { path = "../system_monitor" }
chrono = { version = "0.4", features = ["serde"] }