aboutsummaryrefslogtreecommitdiff
path: root/src/apps.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/apps.rs')
-rw-r--r--src/apps.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/apps.rs b/src/apps.rs
index f72a883..8c16136 100644
--- a/src/apps.rs
+++ b/src/apps.rs
@@ -1,6 +1,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],
}