1
0
mirror of https://git.sr.ht/~adnano/kiln synced 2024-09-19 01:31:36 +02:00

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"
@ -10,11 +9,10 @@ import (
// Config contains site configuration.
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
Title string `toml:"title"` // site title
URLs []string `toml:"urls"` // site URLs
Feeds map[string]string `toml:"feeds"` // site feeds
Templates *Templates `toml:"-"` // site templates
}
// LoadConfig loads the configuration from the provided path.
@ -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
}