1
0
Fork 0
mirror of https://github.com/vbatts/dedupe-linker.git synced 2025-08-02 15:30:28 +00:00

various changes

This commit is contained in:
Vincent Batts 2014-10-14 16:54:28 -04:00
parent bd70060729
commit a023c98cd1
5 changed files with 197 additions and 16 deletions

18
walker/walker.go Normal file
View file

@ -0,0 +1,18 @@
package walker
import (
"./base"
)
type Walker struct {
Base *base.Base
}
func (w Walker) Walk(path string, quit chan int) error {
select {
case <-quit:
return nil
}
return nil
}