nostr-backup-util/README.md
2024-12-11 13:38:04 +00:00

14 lines
275 B
Markdown

# Nostr backup processor
Process JSON-L backups and compute some stats
## Example
```rust
let mut binding = NostrCursor::new("./backups".parse()?);
let mut cursor = Box::pin(binding.walk());
while let Some(Ok(e)) = cursor.next().await {
// do something with `e`
}
```