diff options
Diffstat (limited to 'schist_schema')
| -rw-r--r-- | schist_schema/Cargo.toml | 7 | ||||
| -rw-r--r-- | schist_schema/src/lib.rs | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/schist_schema/Cargo.toml b/schist_schema/Cargo.toml new file mode 100644 index 0000000..0af3470 --- /dev/null +++ b/schist_schema/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "schist_schema" +version = "0.1.0" +edition = "2021" + +[dependencies] +schist_models = { path = "../schist_models" } diff --git a/schist_schema/src/lib.rs b/schist_schema/src/lib.rs new file mode 100644 index 0000000..c60d7d4 --- /dev/null +++ b/schist_schema/src/lib.rs @@ -0,0 +1,2 @@ +pub use schist_models::schema; +pub use schist_models::migrations; |
