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.

16 lines
329 B

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