bigtable_rs/
lib.rs

1//!
2//! A simple Google Bigtable client.
3//!
4//! See [`bigtable`] package for more info.
5//!
6//! [[github repo]]
7//!
8//! [`bigtable`]: mod@crate::bigtable
9//! [github repo]: https://github.com/liufuyang/bigtable_rs
10mod auth_service;
11pub mod bigtable;
12pub mod google;
13mod root_ca_certificate;
14pub mod util;
15
16#[cfg(test)]
17mod tests {
18    #[test]
19    fn it_works() {
20        assert_eq!(2 + 2, 4);
21    }
22}