From b84e9be9d64bad2b1a44f34c499de7dd0525f2b6 Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Thu, 21 Jul 2022 20:29:01 +0200 Subject: [PATCH] re-enable bot_api server --- planetwars-server/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/planetwars-server/src/lib.rs b/planetwars-server/src/lib.rs index 7bc50f3..c8585f8 100644 --- a/planetwars-server/src/lib.rs +++ b/planetwars-server/src/lib.rs @@ -17,6 +17,7 @@ use bb8::{Pool, PooledConnection}; use bb8_diesel::{self, DieselConnectionManager}; use config::ConfigError; use diesel::{Connection, PgConnection}; +use modules::bot_api::run_bot_api; use modules::ranking::run_ranker; use modules::registry::registry_service; use serde::{Deserialize, Serialize}; @@ -168,6 +169,7 @@ pub async fn run_app() { tokio::spawn(run_ranker(global_config.clone(), db_pool.clone())); } tokio::spawn(run_registry(global_config.clone(), db_pool.clone())); + tokio::spawn(run_bot_api(global_config.clone(), db_pool.clone())); let api_service = Router::new() .nest("/api", api())