1
0
Fork 0
mirror of https://github.com/vbatts/dedupe-linker.git synced 2024-12-28 09:36:30 +00:00
dedupe-linker/walker/walker.go

19 lines
252 B
Go
Raw Normal View History

2014-10-14 20:54:28 +00:00
package walker
import (
2016-07-18 15:23:33 +00:00
"github.com/vbatts/dedupe-linker/base"
2014-10-14 20:54:28 +00:00
)
type Walker struct {
Base *base.Base
}
func (w Walker) Walk(path string, quit chan int) error {
// XXX what is going on here?
2014-10-14 20:54:28 +00:00
select {
case <-quit:
close(quit)
2014-10-14 20:54:28 +00:00
}
return nil
}