ghostflow_github/
lib.rs

1// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
2// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4// option. This file may not be copied, modified, or distributed
5// except according to those terms.
6
7mod authorization;
8
9// Required to be in the root for `graphql-client`.
10mod client;
11pub(crate) mod queries;
12pub use crate::client::Github;
13pub use crate::client::GithubError;
14pub use crate::queries::RateLimitInfo;
15
16mod ghostflow;
17pub use crate::ghostflow::GithubService;