summaryrefslogtreecommitdiff
path: root/backend/core/src/lib.rs
blob: cb65fe1e6d86e694f063288d556c66d46e05cf03 (plain)
1
2
3
4
5
6
7
8
9
use diesel_migrations::{embed_migrations, EmbeddedMigrations};

pub mod models;
pub mod queries;
pub mod schema;

mod utils;

pub const MIGRATIONS: EmbeddedMigrations = embed_migrations!("migrations");