Move isXMLMediaType to atom.go

This commit is contained in:
2024-10-15 19:40:13 +02:00
parent b08b62e794
commit e3b9ff0225
2 changed files with 6 additions and 4 deletions

View File

@@ -1,8 +1,14 @@
package atomfeed
import "strings"
type (
EmailAddress string
LanguageTag string
MediaType string
URI string
)
func isXMLMediaType(mediaType string) bool {
return strings.HasSuffix(mediaType, "/xml") || strings.HasSuffix(mediaType, "+xml")
}