2023-05-18 01:51:42 +00:00
|
|
|
use super::*;
|
2021-11-22 16:28:30 +00:00
|
|
|
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
mod wasm;
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
pub use wasm::*;
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
mod native;
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
pub use native::*;
|
2023-05-18 01:51:42 +00:00
|
|
|
|
|
|
|
pub static KNOWN_PROTECTED_STORE_KEYS: [&'static str; 4] =
|
|
|
|
["node_id", "node_id_secret", "_test_key", "RouteSpecStore"];
|