12 lines
227 B
Rust
Raw Normal View History

#[macro_use]
extern crate diesel;
#[macro_use]
extern crate diesel_derives;
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() }