mirror of
https://github.com/OMGeeky/google_bigquery.git
synced 2026-01-03 18:05:03 +01:00
working pretty good I hope
This commit is contained in:
18
src/lib.rs
18
src/lib.rs
@@ -2,16 +2,22 @@
|
||||
#![feature(specialization)]
|
||||
#![allow(unused)]
|
||||
#![allow(incomplete_features)]
|
||||
// #![feature(impl_trait_projections)]
|
||||
|
||||
pub use google_bigquery_derive::HasBigQueryClient as HasBigQueryClientDerive;
|
||||
pub use google_bigquery_derive::BigDataTable as BigDataTableDerive;
|
||||
// pub use google_bigquery_derive::MyDerive;
|
||||
|
||||
pub use client::{BigqueryClient, HasBigQueryClient};
|
||||
pub use data::{BigDataTable, BigDataTableBase, BigDataTableBaseConvenience, BigDataTableHasPk};
|
||||
|
||||
pub mod client;
|
||||
mod googlebigquery;
|
||||
mod data;
|
||||
mod utils;
|
||||
pub mod utils;
|
||||
|
||||
pub use google_bigquery_derive;
|
||||
pub fn add(left: usize, right: usize) -> usize {
|
||||
left + right
|
||||
}
|
||||
// pub fn add(left: usize, right: usize) -> usize {
|
||||
// left + right
|
||||
// }
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests;
|
||||
|
||||
Reference in New Issue
Block a user