Skip to content

Commit

Permalink
Merge branch 'hotfix-0.1.1' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
rvflash committed Mar 22, 2019
2 parents 63d7e33 + cc35b87 commit 4739235
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ func main() {
buf, err := c.ReadAll()
if err != nil {
c.Error(err)
return
}
// writes something as response
c.String(string(buf))
Expand Down
1 change: 1 addition & 0 deletions example/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ func main() {
body, err := c.ReadAll()
if err != nil {
c.Error(err)
return
}
log.Println(string(body))
c.String("read")
Expand Down
1 change: 1 addition & 0 deletions example/start/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ func main() {
buf, err := c.ReadAll()
if err != nil {
c.Error(err)
return
}
// writes something as response
c.String(string(buf))
Expand Down

0 comments on commit 4739235

Please sign in to comment.