Rename client::response and make public

This commit is contained in:
Curtis McEnroe 2015-12-22 00:08:34 -05:00
parent bc9555c9b9
commit 7e3f77aa83
2 changed files with 3 additions and 2 deletions

View File

@ -7,8 +7,7 @@ use url::{self, form_urlencoded, Url};
use provider::Provider;
pub use self::from_response::{FromResponse, ParseError};
mod from_response;
pub mod response;
/// OAuth 2.0 client.
pub struct Client<P: Provider> {

View File

@ -1,3 +1,5 @@
//! Response parsing.
use std::error::Error;
use std::fmt;