From ce9f07f6f95d419c2eaab225c83c8d0e93bcf13d Mon Sep 17 00:00:00 2001 From: JesusPerez Date: Mon, 20 Sep 2021 12:40:02 +0100 Subject: [PATCH] chore: add datastores_ids to declare what is going to be used in each task --- app_env/src/config.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app_env/src/config.rs b/app_env/src/config.rs index fbdf58f..2b3619f 100644 --- a/app_env/src/config.rs +++ b/app_env/src/config.rs @@ -56,6 +56,7 @@ pub struct WebServer { pub password_rules: String, pub mapped_url_prefix: String, pub admin_key: String, + pub datastores_ids: Vec, } impl WebServer { #[must_use] @@ -134,6 +135,7 @@ pub struct SchedTask { pub store: SchedTaskStore, pub schedule: String, pub on_start: bool, + pub datastores_ids: Vec, } #[derive(Clone, Debug, Deserialize, Default)]