2018-12-24 07:42:30 -08:00

9 lines
167 B
Go

package filesystem
// SuperBlocker describes the requirements for file system super blocks.
type SuperBlocker interface {
Is() bool
Offset() int64
Type() string
}