Categorygithub.com/gopher-lego/response
repositorypackage
0.0.0-20200808213549-9544957b9cae
Repository: https://github.com/gopher-lego/response.git
Documentation: pkg.go.dev

# README

response

example

import (
	"github.com/gopher-lego/response"
	"github.com/gin-gonic/gin"
)

func main() {

	r := gin.Default()

	r.GET("/ping", func(c *gin.Context) {

		response.Success(c, "any")

	})

	r.Run()
}