Move extern crate import with other extern crate imports

This commit is contained in:
Debo Mac
2021-10-05 10:11:10 +02:00
committed by Sebastian Thiel
parent 5a1a7b1fb2
commit 3837d0559a

View File

@@ -46,6 +46,8 @@ extern crate serde_derive;
extern crate hyper;
extern crate serde;
extern crate serde_json;
// Re-export the yup_oauth2 crate, that is required to call some methods of the hub and the client
pub extern crate yup_oauth2 as oauth2;
extern crate mime;
extern crate url;
@@ -55,5 +57,3 @@ pub mod client;
// Re-export the hub type and some basic client structs
pub use api::${hub_type};
pub use client::{Result, Error, Delegate};
// Re-export the yup_oauth2 crate, that is required to call some methods of the hub and the client
pub extern crate yup_oauth2 as oauth2;