Change get articles to read from database instead of dummy data.
This commit is contained in:
@@ -2,11 +2,11 @@ use actix_web::{HttpResponse, Responder};
|
||||
use reqwest::StatusCode;
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::reader::structs::feed::Feed;
|
||||
use crate::reader::structs::feed::FeedAggregate;
|
||||
|
||||
#[derive(Serialize)]
|
||||
pub struct Articles {
|
||||
pub feeds: Vec<Feed>,
|
||||
pub feeds: Vec<FeedAggregate>,
|
||||
}
|
||||
|
||||
impl Responder for Articles {
|
||||
|
||||
Reference in New Issue
Block a user