dbg: excessive logging
All checks were successful
On_Push / lint_fmt (push) Successful in 10s
On_Push / lint_clippy (push) Successful in 3m25s
On_Push / build (push) Successful in 8m6s
On_Push / deploy (push) Successful in 12s

This commit is contained in:
silver 2024-11-23 23:50:25 +00:00
parent bab6e4fdec
commit 1f3c33458e
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D
2 changed files with 4 additions and 2 deletions

View file

@ -22,6 +22,7 @@ use sqlx::{
use std::{env, str::FromStr, sync::Arc};
use tokio::sync::RwLock;
#[derive(Debug)]
pub struct Config {
// manages where teh database is stored
pub home: String,
@ -98,6 +99,7 @@ pub fn get_config() -> Config {
if let Ok(x) = env::var("WOLVES_API") {
config.wolves_api = x.trim().to_string();
}
dbg!(&config);
config
}