MetaTube / imageutil /register.go
henry99a's picture
Clean commit for Hugging Face Spaces without binary files
ca7217f
package imageutil
// Register Formats
import (
_ "image/gif"
_ "image/jpeg"
_ "image/png"
_ "golang.org/x/image/bmp"
_ "golang.org/x/image/tiff"
_ "golang.org/x/image/webp"
)