Remove rust workspace
This commit is contained in:
parent
da60f8c005
commit
fc19e650ca
52 changed files with 101 additions and 50 deletions
7
sync-server/src/server/index.rs
Normal file
7
sync-server/src/server/index.rs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
use axum::response::{Html, IntoResponse};
|
||||
|
||||
pub async fn index() -> impl IntoResponse {
|
||||
const HTML_CONTENT: &str = include_str!("./assets/index.html");
|
||||
let html_content = HTML_CONTENT;
|
||||
Html(html_content)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue