From 1992354aed6d74abe667aab45cc37aa259118fc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Kaan=20G=C3=9CM=C3=9C=C5=9E?= <96421894+Tahinli@users.noreply.github.com> Date: Sun, 17 Mar 2024 04:28:23 +0300 Subject: [PATCH] feat: :sparkles: stream from static file --- front/src/main.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/front/src/main.rs b/front/src/main.rs index dca26e4..e04a162 100644 --- a/front/src/main.rs +++ b/front/src/main.rs @@ -75,6 +75,15 @@ async fn coin_status_check() -> Result { fn app() -> Element { rsx! { page_base {} + div { + audio{ + src:"https://radioxide.tahinli.com.tr/audios/music.opus", + controls:true, + autoplay: true, + muted:false, + r#loop:true, + } + } coin_status_renderer {} server_status_renderer {} }