You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
196 B

package filetag
import (
"fmt"
"testing"
)
func Test_etag(t *testing.T) {
etag, err := With("/Users/xorshine/Desktop/c.jpeg")
if err != nil {
t.Fatal(err)
return
}
fmt.Println(etag)
}