(&self, currency_lc: &str, currency: &str)
| 44 | } |
| 45 | } |
| 46 | pub fn url(&self, currency_lc: &str, currency: &str) -> String { |
| 47 | self.url_template |
| 48 | .replace("{currency_lc}", currency_lc) |
| 49 | .replace("{currency}", currency) |
| 50 | } |
| 51 | |
| 52 | pub fn reply_members(&self, currency_lc: &str, currency: &str) -> Vec<String> { |
| 53 | self.reply_members |
no outgoing calls
no test coverage detected