github.com/iron-io/functions@v0.0.0-20180820112432-d59d7d1c40b2/api/server/ping.go (about)

     1  package server
     2  
     3  import (
     4  	"net/http"
     5  
     6  	"github.com/gin-gonic/gin"
     7  )
     8  
     9  func handlePing(c *gin.Context) {
    10  	c.JSON(http.StatusOK, gin.H{"hello": "world!", "goto": "https://github.com/iron-io/functions"})
    11  }