mylloon.fr/src/routes/api_v1.rs

16 lines
273 B
Rust
Raw Normal View History

2023-05-23 10:04:02 +02:00
use actix_web::{get, HttpResponse, Responder};
use serde::Serialize;
2024-01-24 12:10:50 +01:00
/// Response
2023-05-23 10:04:02 +02:00
#[derive(Serialize)]
struct Info {
unix_epoch: u32,
}
#[get("/love")]
async fn love() -> impl Responder {
2023-05-23 10:04:02 +02:00
HttpResponse::Ok().json(Info {
2024-05-28 20:26:58 +02:00
unix_epoch: 1_605_576_600,
2023-05-23 10:04:02 +02:00
})
}