mirror of
https://github.com/h2non/filetype.git
synced 2025-12-24 11:52:08 +08:00
9 lines
110 B
Go
9 lines
110 B
Go
package types
|
|
|
|
var Types = make(map[string]Type)
|
|
|
|
func Add(t Type) Type {
|
|
Types[t.Extension] = t
|
|
return t
|
|
}
|