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;
|
use provider::Provider;
|
||||||
|
|
||||||
pub use self::from_response::{FromResponse, ParseError};
|
pub mod response;
|
||||||
mod from_response;
|
|
||||||
|
|
||||||
/// OAuth 2.0 client.
|
/// OAuth 2.0 client.
|
||||||
pub struct Client<P: Provider> {
|
pub struct Client<P: Provider> {
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
//! Response parsing.
|
||||||
|
|
||||||
use std::error::Error;
|
use std::error::Error;
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
|
|
Loading…
Reference in New Issue