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.

19 lines
490 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
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")
return r
}