instrumentality 0.3.0

A data aggregation platform.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Route for the front page.
//!
//! The / route is implemented here.
//!
//! See endpoint documentation at
//! <https://docs.berserksystems.com/endpoints/frontpage/>.

use axum::{http::StatusCode, response::IntoResponse, Json};

use crate::routes::response::OkResponse;

pub async fn frontpage() -> impl IntoResponse {
    response!(OK, OkResponse::new())
}