You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
566 B

package routes
import (
"github.com/gorilla/mux"
"yaagobackend/controllers" // Import local package (assuming router.go is in a subdirectory named '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", controllers.GetUsers).Methods("GET")
r.HandleFunc("/users/{id}", controllers.GetUser).Methods("GET")
r.HandleFunc("/users", controllers.CreateUser).Methods("POST")
return r
}