https://git.tonybtw.com/oxwm.git
git://git.tonybtw.com/oxwm.git
replace statics with consts
Diff
diff --git a/src/bin/main.rs b/src/bin/main.rs
index df5b3df..42ef91d 100644
--- a/src/bin/main.rs
+++ b/src/bin/main.rs
@@ -3,8 +3,8 @@ use oxwm::errors::MainError;
use std::path::Path;
use std::path::PathBuf;
-static CONFIG_FILE: &str = "config.lua";
-static TEMPLATE: &str = include_str!("../../templates/config.lua");
+const CONFIG_FILE: &str = "config.lua";
+const TEMPLATE: &str = include_str!("../../templates/config.lua");
enum Args {
Exit,