Skip to content

Commit

Permalink
Merge pull request #228 from daedsidog/daedsidog-patch-1
Browse files Browse the repository at this point in the history
Add WebAssembly mime type
  • Loading branch information
hanshuebner authored Apr 12, 2024
2 parents 385dca9 + d7169bf commit f6fbf8a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mime-types.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@

(in-package :hunchentoot)

(defparameter *mime-type-list* '(("application/andrew-inset" "ez")
(defparameter *mime-type-list* '(("application/wasm" "wasm")
("application/andrew-inset" "ez")
("application/cu-seeme" "cu")
("application/dsptype" "tsp")
("application/futuresplash" "spl")
Expand Down Expand Up @@ -360,4 +361,4 @@ of file suffixes for the corresponding type.")
"Given a pathname designator PATHSPEC returns the MIME type
\(as a string) corresponding to the suffix of the file denoted by
PATHSPEC \(or NIL)."
(gethash (pathname-type pathspec) *mime-type-hash*))
(gethash (pathname-type pathspec) *mime-type-hash*))

0 comments on commit f6fbf8a

Please sign in to comment.