Files
fn-serverless/api/server/ping.go
Carlos C d5fb1afda7 Revert "Assert License (#224)"
This reverts commit a61c4dab78.
2016-11-06 09:25:12 -08:00

12 lines
159 B
Go

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