Rename client::response and make public
This commit is contained in:
parent
bc9555c9b9
commit
7e3f77aa83
|
@ -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> {
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
//! Response parsing.
|
||||
|
||||
use std::error::Error;
|
||||
use std::fmt;
|
||||
|
Loading…
Reference in New Issue