@@ -0,0 +1,15 @@
package main
import (
"github.com/gin-gonic/gin"
"net/http"
)
func main() {
router := gin.Default()
router.GET("/", func(c *gin.Context) {
c.String(http.StatusOK, "Ok")
})
router.Run(":8080")
}
The note is not visible to the blocked user.