apps: get all with filter, serde

This commit is contained in:
Philippe Loctaux 2023-03-30 00:53:57 +02:00
parent 842be36a1b
commit 42d88cc2dd
9 changed files with 259 additions and 1 deletions

View file

@ -4,11 +4,12 @@ mod get_valid;
use chrono::{DateTime, Utc};
use id::AppID;
use serde::Serialize;
pub use crate::error::Error;
pub use get_valid::Error as GetValidError;
#[derive(Debug)]
#[derive(Serialize, Debug, Clone)]
pub struct App {
id: AppID,
created_at: DateTime<Utc>,