Initial commit

This commit is contained in:
Simon Goller 2024-04-26 21:34:00 +02:00
commit dccfa2d4cf
19 changed files with 3156 additions and 0 deletions

13
dao_impl/Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "dao_impl"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.sqlx]
version = "0.7.4"
features = ["runtime-tokio", "sqlite"]
[dependencies.dao]
path = "../dao"