lib.rs 273 B

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