mirror of
https://github.com/status-im/status-go.git
synced 2025-02-20 10:48:36 +00:00
13 lines
158 B
Go
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)
|
|
}
|