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
#[derive(Debug)]
#[cfg_attr(feature = "backend-sql", derive(sqlx::Type))]
pub struct User {
    pub username: String,
    pub pwhash: String,
    pub session_id: Option<String>,
}