package utils import ( "testing" ) func TestEndian(t *testing.T) { a := []byte{1, 2, 3, 4, 5, 6, 7} t.Log(a) t.Log(EndianReverse(a)) }