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