use reqwest::Error; pub trait RetrieveEmoteAPI { async fn get_channel_emotes(&self, channel_login: &str) -> Result, Error>; async fn get_global_emotes(&self) -> Result, Error>; }