|
|
|
@ -5,14 +5,14 @@ import (
|
|
|
|
|
"yaagobackend/controllers" // Import local package (assuming router.go is in a subdirectory named 'routes')
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// InitializeRouter sets up the router with all the routes
|
|
|
|
|
// InitializeRouter sets up the router with all the routes and returns the router
|
|
|
|
|
func InitializeRouter() *mux.Router {
|
|
|
|
|
r := mux.NewRouter()
|
|
|
|
|
|
|
|
|
|
// Define routes and their handlers
|
|
|
|
|
r.HandleFunc("/users", GetUsers).Methods("GET")
|
|
|
|
|
r.HandleFunc("/users/{id}", GetUser).Methods("GET")
|
|
|
|
|
r.HandleFunc("/users", CreateUser).Methods("POST")
|
|
|
|
|
r.HandleFunc("/users", controllers.GetUsers).Methods("GET")
|
|
|
|
|
r.HandleFunc("/users/{id}", controllers.GetUser).Methods("GET")
|
|
|
|
|
r.HandleFunc("/users", controllers.CreateUser).Methods("POST")
|
|
|
|
|
|
|
|
|
|
return r
|
|
|
|
|
}
|