Files
LibreTunes/src/util/mod.rs
Ethan Girouard d1c8615105
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
Add router layer to require authentication
2024-11-24 14:28:06 -05:00

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;