All of my important config files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
272 B

7 years ago
  1. snippet middleware
  2. options head
  3. func ${1}(rw http.ResponseWriter, r *http.Request, next http.HandlerFunc) {
  4. ${2}
  5. next(r, rw)
  6. }
  7. snippet handler
  8. options head
  9. func ${1}(w http.ResponseWriter, r *http.Request) {
  10. ${2}
  11. }