Files
fn-serverless/api/server/ping.go
2017-04-19 09:49:12 -06:00

12 lines
202 B
Go

package server
import (
"net/http"
"github.com/gin-gonic/gin"
)
func handlePing(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"hello": "world!", "goto": "https://github.com/kumokit/functions"})
}