about summary refs log tree commit diff stats
path: root/internal/server/mime.go
blob: 696a0ad8a00c21910b4db4719fedba17d2a82d53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package server

import (
	"mime"
	"website/internal/log"
)

var newMIMEs = map[string]string{
	".xsl": "text/xsl",
}

func fixupMIMETypes() {
	for ext, newType := range newMIMEs {
		if err := mime.AddExtensionType(ext, newType); err != nil {
			log.Error("could not update mime type", "ext", ext, "mime", newType)
		}
	}
}

func init() {
	fixupMIMETypes()
}