14 lines
259 B
Rust
Raw Normal View History

#[macro_use]
extern crate diesel;
#[macro_use]
extern crate diesel_derives;
2021-08-21 13:35:15 +08:00
pub mod errors;
2021-08-31 23:01:46 +08:00
pub mod future;
pub mod kv;
mod protobuf;
pub fn uuid() -> String { uuid::Uuid::new_v4().to_string() }
2021-07-13 17:19:39 +08:00
pub fn timestamp() -> i64 { chrono::Utc::now().timestamp() }