Initial work re-implementing model for TimeEntries

This commit is contained in:
2023-11-01 17:32:26 +00:00
parent 31b322d643
commit 8f39bf7d23
12 changed files with 194 additions and 0 deletions
Executable
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env just --justfile
migrate:
sea-orm-cli migrate up
generate-entity:
sea-orm-cli generate entity --with-serde both -o src/entity
release:
cargo build --release
lint:
cargo clippy