2024-12-11 13:38:04 +00:00

275 B

Nostr backup processor

Process JSON-L backups and compute some stats

Example

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`
}