<- Back to shtanton's homepage
aboutsummaryrefslogtreecommitdiff
path: root/walk/read.go
blob: f25109c776050b41fb1868ce2beb3de3f7b5fcf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
package walk

type StredReader interface {
	Read() (WalkItem, error)
	AssertDone()
}

type StredWriter interface {
	Write(WalkItem) error
	AssertDone()
}