| 15 | }; |
| 16 | |
| 17 | pub struct NewsPoller { |
| 18 | discord_http: Arc<DiscordConfig>, |
| 19 | follow_channels: Vec<Id<ChannelMarker>>, |
| 20 | guild_channels: Vec<Channel>, |
| 21 | items: Arc<RwLock<Arc<Vec<NewsItem>>>>, |
| 22 | } |
| 23 | |
| 24 | impl NewsPoller { |
| 25 | pub async fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected