mirror of
https://github.com/gin-gonic/gin.git
synced 2025-10-21 16:58:08 +08:00
11 lines
224 B
Go
11 lines
224 B
Go
// +build go1.7
|
|
|
|
package render
|
|
|
|
import "github.com/gin-gonic/gin/render/common"
|
|
|
|
//PureJSON return the render for AsciiJSON if loaded
|
|
func PureJSON(obj interface{}) common.Render {
|
|
return retRender("PureJSON", obj, nil)
|
|
}
|