summaryrefslogtreecommitdiff
path: root/pkg/btrfs/internal.go
blob: ad1e20bbc9243c85bb3dffce354feef3cec124fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package btrfs

import (
	"lukeshu.com/btrfs-tools/pkg/btrfs/internal"
)

type (
	// (u)int64 types

	Generation   = internal.Generation
	ObjID        = internal.ObjID
	LogicalAddr  = internal.LogicalAddr
	PhysicalAddr = internal.PhysicalAddr
	AddrDelta    = internal.AddrDelta

	// complex types

	Key                   = internal.Key
	Time                  = internal.Time
	UUID                  = internal.UUID
	QualifiedPhysicalAddr = internal.QualifiedPhysicalAddr
)