lightweight com.atproto.sync.listReposByCollection
45
fork

Configure Feed

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

project URL in UA

phil a2623548 f2baabfc

+5 -1
+5 -1
src/http.rs
··· 58 58 impl ThrottledClient { 59 59 pub fn new(rate_per_second: NonZeroU32) -> Self { 60 60 let inner = reqwest::Client::builder() 61 - .user_agent(concat!("microcosm lightrail/v", env!("CARGO_PKG_VERSION"))) 61 + .user_agent(concat!( 62 + "microcosm lightrail/v", 63 + env!("CARGO_PKG_VERSION"), 64 + ", https://tangled.org/microcosm.blue/lightrail" 65 + )) 62 66 .build() 63 67 .expect("failed to build HTTP client"); 64 68 let quota = Quota::per_second(rate_per_second);