blob: c6fbb8f67c1b89be8c8f52b8b684b055ce3de801 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
pub static ADMIN_PASSWORD: &str = "12345678";
pub static USER_PASSWORD: &str = "123456";
#[cfg(feature = "test-no-device")]
pub type Target = ::Pro;
#[cfg(feature = "test-pro")]
pub type Target = ::Pro;
#[cfg(feature = "test-storage")]
pub type Target = ::Storage;
|