Klimi's new dotfiles with stow.
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.

9 lines
254 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: http_requestp
  3. # key: http_requestp
  4. # --
  5. http_request "${1:posting data}" do
  6. action :post
  7. url "${2:http://example.com/check_in}"
  8. message ${3::some => "data"}
  9. headers (${4:\{"AUTHORIZATION" => authorization\}})
  10. end