mirror of
https://github.com/vbatts/dedupe-linker.git
synced 2024-12-27 17:16:32 +00:00
walker: golint
since this package was not even implemented yet, then make it not public Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
7ea5cd6bc4
commit
18ae791748
1 changed files with 3 additions and 2 deletions
|
@ -1,14 +1,15 @@
|
||||||
|
// Package walker is a work-in-progress
|
||||||
package walker
|
package walker
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/vbatts/dedupe-linker/base"
|
"github.com/vbatts/dedupe-linker/base"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Walker struct {
|
type walker struct {
|
||||||
Base *base.Base
|
Base *base.Base
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w Walker) Walk(path string, quit chan int) error {
|
func (w walker) Walk(path string, quit chan int) error {
|
||||||
// XXX what is going on here?
|
// XXX what is going on here?
|
||||||
select {
|
select {
|
||||||
case <-quit:
|
case <-quit:
|
||||||
|
|
Loading…
Reference in a new issue