12 lines
300 B
EmacsLisp
12 lines
300 B
EmacsLisp
;;; know-your-http-well.el --- Look up the meaning of HTTP headers, methods, relations, status codes
|
|
;;; Commentary:
|
|
;;; Code:
|
|
|
|
(require 'http-headers)
|
|
(require 'http-methods)
|
|
(require 'http-relations)
|
|
(require 'http-status-codes)
|
|
|
|
(provide 'know-your-http-well)
|
|
;;; know-your-http-well.el ends here
|