1 2 3 4 5 6 7 8 9 10
#[cfg(not(target_os = "android"))] mod client; mod graphql; mod server; #[cfg(not(target_os = "android"))] pub use client::GrqphQLClient as Client; #[cfg(not(target_os = "android"))] pub use client::WithQueryFields; pub use server::listen;