package routes import ( "net/http" ) func SetupRoutes() { http.HandleFunc("/api/projets", projetsHandler) http.HandleFunc("/api/projet/", projetHandler) http.HandleFunc("/api/technologies", technologiesHandler) }