Gin打印所有路由
我们可以使用下面的代码来打印出 gin 所有路由: func main() { router := gin.Default() router.GET("/hello", func(c *gin.Context) { c.String(http.StatusOK, "Hello, world!") }) router.POST("/login", func(c *gin.Context) { username := c.PostForm("username") password := c.PostForm("password") c.JSON(http.St