github-workflow 2.3.0

GitHub Alfred Workflow to quickly search and open repositories.
Documentation
1
2
3
4
5
6
7
8
9
use chrono::{DateTime, Utc};

#[derive(Debug)]
pub struct Repository {
    pub name_with_owner: String,
    pub name: String,
    pub url: String,
    pub pushed_at: DateTime<Utc>,
}