mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
14 lines
259 B
Rust
14 lines
259 B
Rust
#[macro_use]
|
|
extern crate diesel;
|
|
|
|
#[macro_use]
|
|
extern crate diesel_derives;
|
|
|
|
pub mod errors;
|
|
pub mod future;
|
|
pub mod kv;
|
|
mod protobuf;
|
|
|
|
pub fn uuid() -> String { uuid::Uuid::new_v4().to_string() }
|
|
pub fn timestamp() -> i64 { chrono::Utc::now().timestamp() }
|