Skip to content

Instantly share code, notes, and snippets.

@jfamousket
Created October 14, 2021 08:45
Show Gist options
  • Save jfamousket/2777c8fb728c2536780ac45b8d8c7291 to your computer and use it in GitHub Desktop.
Save jfamousket/2777c8fb728c2536780ac45b8d8c7291 to your computer and use it in GitHub Desktop.

Revisions

  1. jfamousket created this gist Oct 14, 2021.
    7 changes: 7 additions & 0 deletions go_tips.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    ## serve JSON http response

    rw.Header().Set("Content-Type", "application/json")

    json.NewEncoder(rw).Encode(struct{
    Status int `json:"status"`
    }{ Status: http.StatusOk })