Skip to content

Commit

Permalink
fix: make the STORE_FOLDER constant public
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelmmiguel committed Jan 27, 2023
1 parent e74f319 commit 764a4ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use std::{
/// to mount a folder with the source code. To avoid moun†ing
/// a folder that may include multiple files, it stores in
/// .wws/js/XXX/index.js the worker file.
const STORE_FOLDER: &str = ".wws";
pub const STORE_FOLDER: &str = ".wws";

/// Struct to initialize, create and interact with files inside
/// the store. All paths are considered &[&str] to ensure we
Expand Down

0 comments on commit 764a4ad

Please sign in to comment.