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:
parent
bd70060729
commit
a023c98cd1
5 changed files with 197 additions and 16 deletions
18
walker/walker.go
Normal file
18
walker/walker.go
Normal 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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue