1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/// Set the directory where the storage files are located on non-wasm targets.
///
/// ```rust
/// use dioxus_sdk_storage::set_dir;
///
/// fn main(){
/// // set the directory to the default location
/// set_dir!();
/// }
/// ```
/// ```rust
/// use dioxus_sdk_storage::set_dir;
///
/// fn main(){
/// // set the directory to a custom location
/// set_dir!("path/to/dir");
/// }
/// ```
cfg_if!