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.

19 lines
375 B

7 years ago
7 years ago
7 years ago
  1. snippet middleware
  2. options head
  3. func ${1}(w http.ResponseWriter, r *http.Request, next http.HandlerFunc) {
  4. ${2}
  5. next(w, r
  6. }
  7. snippet handler
  8. options head
  9. func ${1}(w http.ResponseWriter, r *http.Request) {
  10. ${2}
  11. }
  12. snippet method
  13. abbr meth
  14. options head
  15. func (${1}) ${2}(${3}) ${4}{
  16. ${5}
  17. }