Skip to main content

josh_github_codegen_graphql/
lib.rs

1#![allow(unused_imports)]
2#![allow(clippy::needless_borrow)]
3
4use chrono::{TimeZone, Utc};
5use url::Url;
6
7pub type Id = String;
8pub type GitObjectId = String;
9pub type NodeId = String;
10pub type Uri = Url;
11pub type DateTime = chrono::DateTime<Utc>;
12
13include!(concat!(env!("OUT_DIR"), "/generated.rs"));