let mut files = "".to_string();
for i in contents{
files.push_str(&i.to_string())
}
println!("{}",files);
let result = reqwest::get(format!("https://api.telegram.org/bot<TOKEN>/sendDocument?chat_id=<Chat_id>&files={}",files)).await;
Что-то прикола с циклом не понял
Обсуждают сегодня