vegan-barcode/internal/controllers/routes.go

9 lines
116 B
Go

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