blob: 5f4e450869f338223381a53473dc3646fcfd180c (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
package packfile
// Signature is the 4-byte "PACK" magic at the start of pack files.
const Signature = 0x5041434b
// SupportedVersion reports whether one pack version is supported.
func SupportedVersion(version uint32) bool {
return version == 2 || version == 3
}
|