aboutsummaryrefslogtreecommitdiff
path: root/src/db
diff options
context:
space:
mode:
Diffstat (limited to 'src/db')
-rw-r--r--src/db/mod.rs1
-rw-r--r--src/db/models/mod.rs3
2 files changed, 4 insertions, 0 deletions
diff --git a/src/db/mod.rs b/src/db/mod.rs
new file mode 100644
index 0000000..c446ac8
--- /dev/null
+++ b/src/db/mod.rs
@@ -0,0 +1 @@
+pub mod models;
diff --git a/src/db/models/mod.rs b/src/db/models/mod.rs
new file mode 100644
index 0000000..5e59949
--- /dev/null
+++ b/src/db/models/mod.rs
@@ -0,0 +1,3 @@
+pub use tosin_macros::Model;
+
+pub type Id = usize;