Question:
I’m trying to access the /ping
endpoint in webview browser.
I’ve tried the following:
Repl link:
https://replit.com/@mimesis/HurtfulRespectfulLaboratory#main.go
router.GET("/ping", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"message": "pong"})
})