<- Back to shtanton's homepage
aboutsummaryrefslogtreecommitdiff
path: root/walk/read.go
blob: 5aedafb2e1ac2f171c19b057b6c797ad41b6132c (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(Value) error
	AssertDone()
}