mirror of
https://github.com/vbatts/dedupe-linker.git
synced 2024-12-26 08:36: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
|
||||
|
||||
import (
|
||||
"github.com/vbatts/dedupe-linker/base"
|
||||
)
|
||||
|
||||
type Walker struct {
|
||||
type walker struct {
|
||||
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?
|
||||
select {
|
||||
case <-quit:
|
||||
|
|
Loading…
Reference in a new issue