service添加auth crate

This commit is contained in:
李运家 2024-04-22 14:33:41 +08:00
parent aad3bbd4ef
commit 89a02e9ecf
2 changed files with 2 additions and 1 deletions

1
Cargo.lock generated
View File

@ -2491,6 +2491,7 @@ dependencies = [
name = "service"
version = "0.1.0"
dependencies = [
"auth",
"chrono",
"domain",
"library",

View File

@ -12,4 +12,4 @@ sea-orm = { version = "0.12.14", features = ["sqlx-mysql", "runtime-tokio-rustls
library = { path = "../library" }
domain = { path = "../domain" }
auth = { path = "auth" }
auth = { path = "../auth" }