mirror of
https://github.com/vbatts/dedupe-linker.git
synced 2025-01-15 18:20:08 +00:00
19 lines
191 B
Go
19 lines
191 B
Go
|
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
|
||
|
}
|