AppFlowy/rust-lib/flowy-infra/src/lib.rs

13 lines
243 B
Rust
Raw Normal View History

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