go-exif/v2/common/common_test.go

14 lines
256 B
Go

package exifcommon
import (
"encoding/binary"
)
var (
// EncodeDefaultByteOrder is the default byte-order for encoding operations.
EncodeDefaultByteOrder = binary.BigEndian
// Default byte order for tests.
TestDefaultByteOrder = binary.BigEndian
)