9 lines
263 B
Rust
9 lines
263 B
Rust
|
//! The db module contains all Diesel-related logic. This is to prevent the various Diesel imports
|
||
|
//! from poluting other modules' namespaces.
|
||
|
|
||
|
pub mod posts;
|
||
|
pub mod sections;
|
||
|
|
||
|
pub use posts::{NewPost, PatchPost, Post};
|
||
|
pub use sections::{NewSection, Section};
|