refactor: move database models to entity crate

This commit is contained in:
Suiranoil
2023-07-04 16:15:36 +03:00
parent a177b99cd3
commit 2473d92519
24 changed files with 136 additions and 137 deletions

11
entity/Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[package]
name = "entity"
version = "0.1.0"
edition = "2021"
[lib]
name = "entity"
path = "src/lib.rs"
[dependencies]
sea-orm = "0.11.3"