this repo has no description
3
fork

Configure Feed

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

at main 11 lines 174 B view raw
1pub struct AppState { 2 pub http: reqwest::Client, 3} 4 5impl AppState { 6 pub fn new() -> Self { 7 Self { 8 http: reqwest::Client::new(), 9 } 10 } 11}