Skip to content

Commit

Permalink
Merge pull request #261 from sendgrid/af4ro-patch-1
Browse files Browse the repository at this point in the history
readme tag update and linter error fix
  • Loading branch information
thinkingserious authored Aug 8, 2018
2 parents 588320a + 281a8eb commit 2921ca5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.txt)
[![Twitter Follow](https://img.shields.io/twitter/follow/sendgrid.svg?style=social&label=Follow)](https://twitter.com/sendgrid)
[![GitHub contributors](https://img.shields.io/github/contributors/sendgrid/sendgrid-go.svg)](https://github.com/sendgrid/sendgrid-go/graphs/contributors)
[![Open Source Helpers](https://www.codetriage.com/sendgrid/sendgrid-go/badges/users.svg)](https://www.codetriage.com/sendgrid/sendgrid-go)

**NEW:** Subscribe to email [notifications](https://dx.sendgrid.com/newsletter/go) for releases and breaking changes.

Expand Down
5 changes: 4 additions & 1 deletion helpers/inbound/inbound.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ func loadConfig(path string) configuration {
}

func indexHandler(response http.ResponseWriter, request *http.Request) {
fmt.Fprintf(response, "%s", "Hello World")
_, err := fmt.Fprintf(response, "%s", "Hello World")
if err != nil {
log.Fatal(err)
}
}

func getBoundary(value string, contentType string) (string, *strings.Reader) {
Expand Down

0 comments on commit 2921ca5

Please sign in to comment.