mirror of
https://github.com/vbatts/dedupe-linker.git
synced 2024-12-27 00:56:31 +00:00
Vincent Batts
18ae791748
since this package was not even implemented yet, then make it not public Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
19 lines
292 B
Go
19 lines
292 B
Go
// Package walker is a work-in-progress
|
|
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 {
|
|
// XXX what is going on here?
|
|
select {
|
|
case <-quit:
|
|
close(quit)
|
|
}
|
|
return nil
|
|
}
|