comments cleanup

This commit is contained in:
ModulatingForce 2024-04-09 12:51:53 -04:00
parent f7881fa07d
commit 4b849cfed6

View file

@ -15,21 +15,9 @@ use dotenv::dotenv;
use std::env; use std::env;
fn adminvector() -> Vec<String> { fn adminvector() -> Vec<String> {
// vec![String::from("ModulatingForce")]
// //vec![]
dotenv().ok(); dotenv().ok();
let mut admins = Vec::new(); let mut admins = Vec::new();
// for admin in env::var("bot_admins").unwrap().split(',') {
// admins.push(String::from(admin))
// }
// 03.17 - Forcen - Suggesting below instead :
/*
- this will push only if env::var() returns Ok() ;
otherwise (like in Err(_)) do nothing
*/
if let Ok(value) = env::var("bot_admins") { if let Ok(value) = env::var("bot_admins") {
for admin in value.split(',') { for admin in value.split(',') {
admins.push(String::from(admin)) admins.push(String::from(admin))