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