diff options
Diffstat (limited to 'src/config.rs')
-rw-r--r-- | src/config.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs index 47695e3..11742d9 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,4 +1,4 @@ -use crate::handlers::X500MapperConfig; +use crate::{commands::CommandsConfig, handlers::X500MapperConfig}; use anyhow::{Context, Result}; use serde::Deserialize; use std::{fs, path::Path}; @@ -9,6 +9,7 @@ pub struct Config { pub database_url: String, pub discord_token: String, + pub commands: CommandsConfig, pub x500_mapper: X500MapperConfig, } |