//! Route for the front page.
//!//! The / route is implemented here.
//!//! See endpoint documentation at
//! <https://docs.berserksystems.com/endpoints/frontpage/>.
useaxum::{http::StatusCode,response::IntoResponse, Json};usecrate::routes::response::OkResponse;pub async fnfrontpage()-> impl IntoResponse{response!(OK,OkResponse::new())}