2021-07-10 16:07:37 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate diesel;
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate diesel_derives;
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate diesel_migrations;
|
|
|
|
|
|
|
|
mod kv;
|
|
|
|
mod protobuf;
|
|
|
|
|
2021-07-10 08:27:20 +00:00
|
|
|
pub fn uuid() -> String { uuid::Uuid::new_v4().to_string() }
|