package main func main() { router := gin.Default() router.GET("/test", runTest) router.Run("localhost:8080") }