Skip to content

Commit

Permalink
Merge tag 'v0.1.1'
Browse files Browse the repository at this point in the history
[twgit] Hotfix finish: hotfix-0.1.1
  • Loading branch information
rvflash committed Mar 22, 2019
2 parents 7095b11 + 4739235 commit 6319df3
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 6319df3

Please sign in to comment.