All checks were successful
Push Workflows / docs (push) Successful in 1m13s
Push Workflows / test (push) Successful in 2m14s
Push Workflows / build (push) Successful in 3m8s
Push Workflows / leptos-test (push) Successful in 5m26s
Push Workflows / docker-build (push) Successful in 19m16s
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;
|