clear_variables

This commit is contained in:
Martin Kavík 2024-06-16 18:29:25 +02:00
parent a299ae1082
commit 4807b1bde5
6 changed files with 98 additions and 27 deletions

View file

@ -1,15 +1,14 @@
use moon::*;
async fn frontend() -> Frontend {
Frontend::new().title("FastWave").append_to_head(concat!(
"<style>",
include_str!("../style.css"),
"</style>"
)).append_to_head(concat!(
"<script type=\"module\">",
include_str!("../index.js"),
"</script>"
))
Frontend::new()
.title("FastWave")
.append_to_head(concat!("<style>", include_str!("../style.css"), "</style>"))
.append_to_head(concat!(
"<script type=\"module\">",
include_str!("../index.js"),
"</script>"
))
}
async fn up_msg_handler(_: UpMsgRequest<()>) {}