1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-09-29 15:50:10 +00:00
jfa-go/api-userpage.go

8 lines
156 B
Go
Raw Normal View History

package main
import "github.com/gin-gonic/gin"
func (app *appContext) HelloWorld(gc *gin.Context) {
gc.JSON(200, stringResponse{"It worked!", "none"})
}