very fast at protocol indexer with flexible filtering, xrpc queries, cursor-backed event stream, and more, built on fjall
rust fjall at-protocol atproto indexer
59
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 364 B view raw
1use serde::{Deserialize, Serialize}; 2 3/// apply a bool patch or set replacement for a single set update. 4#[derive(Debug, Clone, Serialize, Deserialize)] 5#[serde(untagged)] 6pub(crate) enum SetUpdate { 7 /// replace the entire set with this list 8 Set(Vec<String>), 9 /// patch: true = add, false = remove 10 Patch(std::collections::HashMap<String, bool>), 11}