mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-22 14:16:19 +00:00
mejorar index
This commit is contained in:
parent
b46b087bc6
commit
6c19fd55e6
1 changed files with 11 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
use axum::{
|
use axum::{
|
||||||
extract::{Path, State},
|
extract::{Path, State},
|
||||||
http::StatusCode,
|
http::{Response, StatusCode},
|
||||||
response::IntoResponse,
|
response::IntoResponse,
|
||||||
routing::get,
|
routing::get,
|
||||||
Json, Router,
|
Json, Router,
|
||||||
|
@ -17,8 +17,15 @@ use sqlx::{
|
||||||
};
|
};
|
||||||
use std::{env, str::FromStr, time::Duration};
|
use std::{env, str::FromStr, time::Duration};
|
||||||
|
|
||||||
async fn index() -> &'static str {
|
async fn index() -> impl IntoResponse {
|
||||||
"Hello, world! <a href=https://github.com/catdevnull/preciazo>catdevnull/preciazo</a>"
|
Response::builder()
|
||||||
|
.header("Content-Type", "text/html")
|
||||||
|
.body("<style>html,body{font-family:sans-serif;}</style>
|
||||||
|
<h1>old preciazo API</h1>
|
||||||
|
Hello, world! <a href=https://github.com/catdevnull/preciazo>catdevnull/preciazo</a><br>
|
||||||
|
<a href=mailto:hola@nulo.in>hola@nulo.in</a>
|
||||||
|
".to_string())
|
||||||
|
.unwrap()
|
||||||
}
|
}
|
||||||
async fn healthcheck(State(pool): State<SqlitePool>) -> impl IntoResponse {
|
async fn healthcheck(State(pool): State<SqlitePool>) -> impl IntoResponse {
|
||||||
let one_day_ago = chrono::Utc::now() - chrono::Duration::hours(25);
|
let one_day_ago = chrono::Utc::now() - chrono::Duration::hours(25);
|
||||||
|
@ -308,6 +315,7 @@ async fn main() {
|
||||||
|
|
||||||
let app = Router::new()
|
let app = Router::new()
|
||||||
.route("/", get(index))
|
.route("/", get(index))
|
||||||
|
.route("/api/", get(index))
|
||||||
.route("/api/healthcheck", get(healthcheck))
|
.route("/api/healthcheck", get(healthcheck))
|
||||||
.route("/api/0/best-selling-products", get(get_best_selling))
|
.route("/api/0/best-selling-products", get(get_best_selling))
|
||||||
.route("/api/0/ean/:ean/history", get(get_product_history))
|
.route("/api/0/ean/:ean/history", get(get_product_history))
|
||||||
|
|
Loading…
Reference in a new issue