lib.rs 227 B

1234567891011
  1. #[macro_use]
  2. extern crate diesel;
  3. #[macro_use]
  4. extern crate diesel_derives;
  5. pub mod kv;
  6. mod protobuf;
  7. pub fn uuid() -> String { uuid::Uuid::new_v4().to_string() }
  8. pub fn timestamp() -> i64 { chrono::Utc::now().timestamp() }