This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
2021-12-08 13:38:25 +08:00

17 lines
300 B
Go

package mime
import (
"mime"
)
var consensusMimes = map[string]string{
// rfc4329: text/javascript is obsolete, so we need to overwrite mime's builtin
".js": "application/javascript; charset=utf-8",
}
func init() {
for ext, typ := range consensusMimes {
mime.AddExtensionType(ext, typ)
}
}