pattrick 0.7.0

Pattrick is a command line tool for managing Personal Access Tokens (PAT) in Azure DevOps.
Documentation
1
2
3
4
5
6
7
8
9
10
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize, Clone, Default, PartialEq, Eq)]
pub struct GitHubRelease {
    url: String,
    assets_url: String,
    pub tag_name: String,
    published_at: DateTime<Utc>,
}