status-go/images/meta_test.go
Samuel Hawksby-Robinson 17f0bac6ae Added basic code from https://github.com/status-im/image-resizer
Made some modifications to suit a general approach, more changes need to be applied
2020-12-17 14:10:00 +01:00

13 lines
158 B
Go

package images
import (
"fmt"
"testing"
)
func TestFileTypes(t *testing.T) {
fmt.Printf("%d\n", WEBP)
fmt.Printf("%d\n", SVG)
fmt.Printf("%d\n", AI)
}