mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-30 19:11:13 +02:00
9 lines
167 B
Go
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
|
|
}
|