From 9238eae9a7756dca07de48cac8d0ea7528d0d30c Mon Sep 17 00:00:00 2001 From: Will Date: Mon, 17 Aug 2026 16:59:30 +0100 Subject: [PATCH] add example jetstream implementation Signed-off-by: Will --- src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 39fc0ea..a479df0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -35,7 +35,10 @@ async fn main() -> anyhow::Result<()> { compression: false, zstd_dictionary_location: String::new(), jetstream_hostname: "jetstream1.us-east.bsky.network".to_string(), - collections: vec!["app.bsky.feed.post".to_string()], + collections: vec![ + "app.bsky.feed.post".to_string(), + "app.bsky.feed.like".to_string(), + ], max_message_size_bytes: None, cursor: None, require_hello: false, -- 2.51.2