Files
fn-serverless/api/server/router/ping.go
2016-07-21 16:09:21 -03:00

12 lines
159 B
Go

package router
import (
"net/http"
"github.com/gin-gonic/gin"
)
func handlePing(c *gin.Context) {
c.JSON(http.StatusNotImplemented, "Not Implemented")
}