Go Gin Gonic Unit Testing Deployment Issue
问题 I have a Go API built using the Gin framework. Reading the docs in the testing section here, i tried to implement something similar: main.go package main import ( "mes/routes" "github.com/gin-gonic/gin" ) func setupMainRoutes(engine *gin.Engine) { engine.GET("/mesg/:language/services", routes.AllServices) engine.GET("/mesg/:language/service/:id", routes.OneService) engine.GET("/mesg/:language/services/search", routes.SearchService) } func setupErrorRoutes(engine *gin.Engine) { engine.NoRoute