aboutsummaryrefslogtreecommitdiff
path: root/src/apps.rs
blob: 8c16136c5951e44f11197938c9fd4170a1877235 (plain)
1
2
3
4
5
6
7
8
use crate::db::migration::Migration;
use crate::db::models::ModelMeta;

pub struct AppConfig {
    pub name: &'static str,
    pub models: &'static [ModelMeta],
    pub migrations: &'static [Migration],
}