sentrystr 0.2.0

Core library for publishing Sentry-like events to Nostr network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use sentrystr::combined_example::run_combined_example;

#[tokio::main]
async fn main() -> sentrystr::Result<()> {
    println!("🚀 Running Rust Combined Example");

    match run_combined_example().await {
        Ok(()) => {
            println!("✅ Combined example completed successfully!");
        }
        Err(e) => {
            println!("❌ Combined example failed: {}", e);
            return Err(e);
        }
    }

    Ok(())
}