summaryrefslogtreecommitdiffstats
path: root/src/auth/oauth.rs
blob: 6d4da77b367a18169195cc12ed9cad48b05314df (plain) (blame)
1
2
3
4
5
6
7
8
pub mod device_code;
mod refresh;

pub struct AccessTokenWithRefresh {
    pub access_token: String,
    pub refresh_token: Option<String>
}