diff --git a/src/bin/update_data.rs b/src/bin/update_data.rs index 310b97a..3151080 100644 --- a/src/bin/update_data.rs +++ b/src/bin/update_data.rs @@ -9,6 +9,7 @@ use std::{process, sync::Arc}; use tokio::sync::RwLock; use skynet_discord_bot::common::database::{db_init, DataBase}; use skynet_discord_bot::common::wolves::cns::get_wolves; +use skynet_discord_bot::common::wolves::committees::get_cns; #[tokio::main] async fn main() { @@ -47,6 +48,9 @@ impl EventHandler for Handler { // get the data for each individual club/soc get_wolves(&ctx).await; + + // get teh data for the clubs/socs committees + get_cns(&ctx).await; // finish up process::exit(0);