mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-14 02:41:13 +08:00
11 lines
85 B
Go
11 lines
85 B
Go
package iface
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type Reader interface {
|
|
io.ReadSeeker
|
|
io.Closer
|
|
}
|