Files
fx-serverless/examples/functions/Golang/func.go
2019-08-09 09:10:49 +08:00

10 lines
133 B
Go
Vendored

package main
import "github.com/gin-gonic/gin"
func fx(ctx *gin.Context) {
ctx.JSON(200, gin.H{
"message": "hello world",
})
}