mirror of
https://github.com/status-im/status-go.git
synced 2025-02-21 11:18:28 +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)
|
||
|
}
|