Create Project APIs.
Some checks failed
Check / Backend (pull_request) Failing after 3m14s
Check / Frontend (pull_request) Successful in 1m59s

This commit is contained in:
Drew 2025-10-22 22:20:14 -07:00
parent d8094c4812
commit 8b32739e51
13 changed files with 297 additions and 7 deletions

View file

@ -32,6 +32,7 @@ async fn main() {
let app = Router::new()
.route("/health", get(health))
.nest("/api/tasks", services::create_task_router())
.nest("/api/projects", services::create_project_router())
.layer(cors)
.with_state(pool);