Skip to content

Commit

Permalink
docs(readme): Add the TOML rendering example (#3400)
Browse files Browse the repository at this point in the history
  • Loading branch information
mstmdev committed Nov 17, 2022
1 parent 6150c48 commit c629689
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Expand Up @@ -49,7 +49,7 @@ Gin is a web framework written in Go (Golang). It features a martini-like API wi
- [Bind Header](#bind-header)
- [Bind HTML checkboxes](#bind-html-checkboxes)
- [Multipart/Urlencoded binding](#multiparturlencoded-binding)
- [XML, JSON, YAML and ProtoBuf rendering](#xml-json-yaml-and-protobuf-rendering)
- [XML, JSON, YAML, TOML and ProtoBuf rendering](#xml-json-yaml-toml-and-protobuf-rendering)
- [SecureJSON](#securejson)
- [JSONP](#jsonp)
- [AsciiJSON](#asciijson)
Expand Down Expand Up @@ -1114,7 +1114,7 @@ Test it with:
curl -X POST -v --form name=user --form "avatar=@./avatar.png" http://localhost:8080/profile
```

### XML, JSON, YAML and ProtoBuf rendering
### XML, JSON, YAML, TOML and ProtoBuf rendering

```go
func main() {
Expand Down Expand Up @@ -1148,6 +1148,10 @@ func main() {
c.YAML(http.StatusOK, gin.H{"message": "hey", "status": http.StatusOK})
})

r.GET("/someTOML", func(c *gin.Context) {
c.TOML(http.StatusOK, gin.H{"message": "hey", "status": http.StatusOK})
})

r.GET("/someProtoBuf", func(c *gin.Context) {
reps := []int64{int64(1), int64(2)}
label := "test"
Expand Down

0 comments on commit c629689

Please sign in to comment.