11 lines
123 B
Rust
11 lines
123 B
Rust
use cfg_if::cfg_if;
|
|
|
|
cfg_if! {
|
|
if #[cfg(feature = "ssr")] {
|
|
pub mod audio;
|
|
pub mod require_auth;
|
|
}
|
|
}
|
|
|
|
pub mod state;
|