mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-07-13 07:38:42 +00:00
9 lines
164 B
Go
9 lines
164 B
Go
package bolt
|
|
|
|
type file interface {
|
|
Fd() uintptr
|
|
Name() string
|
|
ReadAt(b []byte, off int64) (n int, err error)
|
|
WriteAt(b []byte, off int64) (n int, err error)
|
|
}
|