mirror of
https://github.com/vbatts/dedupe-linker.git
synced 2024-11-15 21:28:37 +00:00
18 lines
221 B
Go
18 lines
221 B
Go
package walker
|
|
|
|
import (
|
|
"github.com/vbatts/dedupe-linker/base"
|
|
)
|
|
|
|
type Walker struct {
|
|
Base *base.Base
|
|
}
|
|
|
|
func (w Walker) Walk(path string, quit chan int) error {
|
|
|
|
select {
|
|
case <-quit:
|
|
return nil
|
|
}
|
|
return nil
|
|
}
|