mirror of
https://github.com/talgo-cloud/bimg.git
synced 2026-03-07 13:38:16 -08:00
10 lines
149 B
Go
10 lines
149 B
Go
package bimg
|
|
|
|
type Type struct {
|
|
Name string
|
|
Mime string
|
|
}
|
|
|
|
func DetermineType(buf []byte) *Type {
|
|
return &Type{Name: "jpg", Mime: "image/jpg"}
|
|
}
|