mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-16 13:06:30 +00:00
12 lines
235 B
Rust
12 lines
235 B
Rust
#[macro_use]
|
|
extern crate diesel;
|
|
|
|
use chrono::NaiveDateTime;
|
|
|
|
pub mod schema;
|
|
pub mod source;
|
|
|
|
// TODO: can probably move this back to lemmy_db_queries
|
|
pub fn naive_now() -> NaiveDateTime {
|
|
chrono::prelude::Utc::now().naive_utc()
|
|
}
|