blob: c2fe09947a90345dd9e8af30461c7b5d8ad5ee8a (
plain)
1
2
3
4
5
6
7
8
9
|
use crate::db::migration::Migration;
use crate::db::models::ModelMeta;
pub struct AppConfig {
pub name: &'static str,
pub mod_rs_path: &'static str,
pub models: &'static [ModelMeta],
pub migrations: &'static [Migration],
}
|