mirror of
https://codeberg.org/ashley/poke
synced 2025-04-06 09:38:00 +00:00
15 lines
258 B
Rust
15 lines
258 B
Rust
use actix_web::web;
|
|
use actix_web::Responder;
|
|
use serde::Serialize;
|
|
|
|
#[derive(Debug, Serialize)]
|
|
pub struct Info {
|
|
january: &'static str,
|
|
}
|
|
|
|
pub async fn get() -> impl Responder {
|
|
web::Json(Info {
|
|
january: env!("CARGO_PKG_VERSION"),
|
|
})
|
|
}
|