Add 'backend/' from commit '4b5069d17945252abee2a826818098906af56334'

git-subtree-dir: backend
git-subtree-mainline: 9c93274511
git-subtree-split: 4b5069d179
This commit is contained in:
2026-09-03 14:02:07 +02:00
17 changed files with 630 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package routes
import (
"net/http"
)
func SetupRoutes() {
http.HandleFunc("/api/projets", projetsHandler)
http.HandleFunc("/api/projet/", projetHandler)
http.HandleFunc("/api/technologies", technologiesHandler)
}