2024-05-16 18:42:31 +02:00
|
|
|
package api
|
2024-05-16 17:59:21 +02:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
"portfolio/api/handlers"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func ApiRoutes() *http.ServeMux {
|
|
|
|
|
// Create a new request multiplexer
|
|
|
|
|
// Take incoming requests and dispatch them to the matching webHandler
|
|
|
|
|
mux := http.NewServeMux()
|
|
|
|
|
|
|
|
|
|
// Register the routes and webHandler
|
2024-05-16 18:42:31 +02:00
|
|
|
mux.HandleFunc("/", handlers.CatchAllHandler)
|
2024-05-16 17:59:21 +02:00
|
|
|
mux.HandleFunc("POST /api/user", handlers.CreateUser)
|
|
|
|
|
mux.HandleFunc("GET /api/user/{id}", handlers.GetUser)
|
|
|
|
|
mux.HandleFunc("POST /api/login", handlers.Login)
|
|
|
|
|
|
|
|
|
|
return mux
|
|
|
|
|
}
|