Files
rss-reader/src/json_serialization/articles.rs
T
2026-06-07 15:43:43 +02:00

20 lines
500 B
Rust
Executable File

use actix_web::http::StatusCode;
use actix_web::{HttpResponse, Responder};
use serde::Serialize;
use crate::reader::structs::feed::FeedAggregate;
#[derive(Serialize)]
pub struct Articles {
pub feeds: Vec<FeedAggregate>,
}
impl Responder for Articles {
type Body = String;
fn respond_to(self, _req: &actix_web::HttpRequest) -> actix_web::HttpResponse<Self::Body> {
let body = serde_json::to_string(&self).unwrap();
HttpResponse::with_body(StatusCode::OK, body)
}
}