1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-14 02:41:13 +08:00
Files
Łukasz Magiera f218b69e47 coreapi: split the interface into multiple files
License: MIT
Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
2018-03-10 18:46:45 +01:00

11 lines
85 B
Go

package iface
import (
"io"
)
type Reader interface {
io.ReadSeeker
io.Closer
}