1
0
Fork 0
mirror of https://github.com/vbatts/dedupe-linker.git synced 2024-12-27 00:56:31 +00:00
dedupe-linker/walker/walker.go
Vincent Batts 18ae791748 walker: golint
since this package was not even implemented yet, then make it not public

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2016-09-13 11:10:17 -04:00

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
}