podsync 0.1.12

A server to sync podcasts with, mirroring the gpodder API. Designed for use with AntennaPod
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

use super::Episode;
use crate::time::Timestamp;

#[derive(Debug, Deserialize, Serialize)]
pub struct Episodes {
    pub timestamp: Timestamp,
    pub actions: Vec<Episode>,
}