8 lines
119 B
Go
8 lines
119 B
Go
|
package MimeTypes
|
||
|
|
||
|
// The type for a MIME type.
|
||
|
type MimeType struct {
|
||
|
MimeType string
|
||
|
FileExtension []string
|
||
|
}
|