config: Remove mediatypes

This commit is contained in:
adnano 2021-03-20 16:29:06 -04:00
parent d7e9f5e7c2
commit 6e7575fdc2

View file

@ -1,7 +1,6 @@
package main
import (
"mime"
"os"
"text/template"
@ -13,7 +12,6 @@ type Config struct {
Title string `toml:"title"` // site title
URLs []string `toml:"urls"` // site URLs
Feeds map[string]string `toml:"feeds"` // site feeds
Mediatypes map[string][]string `toml:"mediatypes"` // mediatypes
Templates *Templates `toml:"-"` // site templates
}
@ -30,13 +28,6 @@ func LoadConfig(path string) (*Config, error) {
return nil, err
}
// Register media types
for typ, exts := range c.Mediatypes {
for _, ext := range exts {
mime.AddExtensionType(typ, ext)
}
}
return c, nil
}