Skip to content

Commit

Permalink
plugins: make dir public
Browse files Browse the repository at this point in the history
  • Loading branch information
DashieTM committed May 30, 2024
1 parent 5582498 commit e7f7966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/plugin_setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub static mut BACKEND_PLUGINS: Lazy<Vec<BackendPluginFunctions>> = Lazy::new(||
setup_backend_plugins()
});
static mut LIBS: Vec<libloading::Library> = Vec::new();
static mut PLUGIN_DIR: Lazy<PathBuf> = Lazy::new(|| PathBuf::from(""));
pub static mut PLUGIN_DIR: Lazy<PathBuf> = Lazy::new(|| PathBuf::from(""));

static SETUP_PLUGIN_DIR: fn() -> Option<PathBuf> = || -> Option<PathBuf> {
let config = create_config("Xetibo", "ReSet").expect("Could not create config directory");
Expand Down

0 comments on commit e7f7966

Please sign in to comment.