AppFlowy/shared-lib/lib-infra/src/lib.rs

16 lines
250 B
Rust
Raw Normal View History

2021-08-31 15:01:46 +00:00
pub mod future;
pub mod retry;
#[cfg(feature = "gen_pb")]
pub mod pb;
2021-09-14 08:22:44 +00:00
#[allow(dead_code)]
2022-01-23 04:14:00 +00:00
pub fn uuid_string() -> String {
uuid::Uuid::new_v4().to_string()
}
2021-09-14 08:22:44 +00:00
#[allow(dead_code)]
2022-01-23 04:14:00 +00:00
pub fn timestamp() -> i64 {
chrono::Utc::now().timestamp()
}