Spaces:
Running
Running
File size: 837 Bytes
fe3d8c6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | use axum::http::header;
use axum::response::IntoResponse;
use axum::routing::get;
use axum::Router;
use super::AppState;
const INDEX_HTML: &str = include_str!("assets/index.html");
const STYLE_CSS: &str = include_str!("assets/style.css");
const APP_JS: &str = include_str!("assets/app.js");
pub fn routes() -> Router<AppState> {
Router::new()
.route("/", get(index))
.route("/style.css", get(style))
.route("/app.js", get(app_js))
}
async fn index() -> impl IntoResponse {
([(header::CONTENT_TYPE, "text/html; charset=utf-8")], INDEX_HTML)
}
async fn style() -> impl IntoResponse {
([(header::CONTENT_TYPE, "text/css; charset=utf-8")], STYLE_CSS)
}
async fn app_js() -> impl IntoResponse {
(
[(header::CONTENT_TYPE, "application/javascript; charset=utf-8")],
APP_JS,
)
}
|