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:
Vincent Batts 2016-09-13 10:41:29 -04:00
parent 7ea5cd6bc4
commit 18ae791748
1 changed files with 3 additions and 2 deletions

View File

@ -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: