feat: with authorization

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-05-27 13:12:29 +02:00
parent 1d4cda7c48
commit e991caef73
21 changed files with 2073 additions and 1186 deletions

View File

@@ -33,4 +33,5 @@ tower-http = { version = "0.3.4", features = ["full"] }
argon2 = "0.4"
rand_core = { version = "0.6", features = ["std"] }
cookie = { version = "0.16", features = ["secure", "percent-encode"] }
clap = { version = "3", features = ["derive", "env"] }
clap.workspace = true

View File

@@ -7,8 +7,7 @@ use crate::{
configs::AppConfig,
database::ConnectionPool,
services::{
item_service::{DefaultItemService, MemoryItemService},
project_service::{DefaultProjectService, MemoryProjectService},
item_service::MemoryItemService, project_service::MemoryProjectService,
user_service::DefaultUserService,
},
};

View File

@@ -0,0 +1 @@