lemmy/lemmy_db_schema/src/lib.rs
2020-12-18 18:27:25 +01:00

12 lines
178 B
Rust

#[macro_use]
extern crate diesel;
use chrono::NaiveDateTime;
pub mod schema;
pub mod source;
pub fn naive_now() -> NaiveDateTime {
chrono::prelude::Utc::now().naive_utc()
}