gotosocial/vendor/github.com/h2non/filetype/types/mime.go

15 lines
278 B
Go
Raw Normal View History

package types
// MIME stores the file MIME type values
type MIME struct {
Type string
Subtype string
Value string
}
// Creates a new MIME type
func NewMIME(mime string) MIME {
kind, subtype := splitMime(mime)
return MIME{Type: kind, Subtype: subtype, Value: mime}
}