git-subtree-dir: backend git-subtree-mainline:9c93274511git-subtree-split:4b5069d179
11 lines
218 B
Go
11 lines
218 B
Go
package routes
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func SetupRoutes() {
|
|
http.HandleFunc("/api/projets", projetsHandler)
|
|
http.HandleFunc("/api/projet/", projetHandler)
|
|
http.HandleFunc("/api/technologies", technologiesHandler)
|
|
} |