From ed987c994d276ec3bc6c915f265e37eed4c648b1 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Mon, 4 Nov 2024 19:37:05 -0800 Subject: [PATCH] Rename config folder Didn't see any reason to keep it hidden by default --- {.config => config}/config.json5 | 0 src/config.rs | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {.config => config}/config.json5 (100%) diff --git a/.config/config.json5 b/config/config.json5 similarity index 100% rename from .config/config.json5 rename to config/config.json5 diff --git a/src/config.rs b/src/config.rs index cf2e033..eb62250 100644 --- a/src/config.rs +++ b/src/config.rs @@ -28,7 +28,7 @@ use tracing::error; use crate::{action::Action, app::Mode}; -const CONFIG: &str = include_str!("../.config/config.json5"); +const CONFIG: &str = include_str!("../config/config.json5"); #[derive(Clone, Debug, Deserialize, Default)] pub struct AppConfig {