codealong-github 0.1.1

Codealong Github support
Documentation
extern crate chrono;
#[macro_use]
extern crate error_chain;
extern crate git2;
extern crate regex;
#[macro_use]
extern crate lazy_static;
extern crate reqwest;
#[macro_use]
extern crate serde_derive;
extern crate codealong;
extern crate serde;
extern crate serde_json;
#[macro_use]
extern crate slog;

mod analyzed_pull_request;
mod client;
mod config;
mod cursor;
mod error;
mod pull_request;
mod pull_request_analyzer;
mod pull_requests_analyzer;
mod repo;
mod team;
mod user;

pub use crate::analyzed_pull_request::AnalyzedPullRequest;
pub use crate::client::Client;
pub use crate::config::config_from_org;
pub use crate::cursor::Cursor;
pub use crate::error::{Error, ErrorKind};
pub use crate::pull_request::PullRequest;
pub use crate::pull_request_analyzer::PullRequestAnalyzer;
pub use crate::pull_requests_analyzer::PullRequestsAnalyzer;
pub use crate::repo::Repo;
pub use crate::user::User;