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.

20 lines
421 B

package main
import (
"log"
"net/http"
"yaagobackend/routes" // Import local package (assuming router.go is in a subdirectory named 'routes')
"github.com/gorilla/mux"
)
func main() {
r := mux.NewRouter()
// Initialize routes from router.go
routes.InitializeRoutes(r)
// Start the server
log.Println("Server listening on port 8000")
log.Fatal(http.ListenAndServe(":8000", r))
}