miller/ prefixing on package names

This commit is contained in:
John Kerl 2020-08-27 00:13:05 -04:00
parent d3e209bb64
commit a6fa5a350e
21 changed files with 20 additions and 20 deletions

View file

@ -8,7 +8,7 @@ import (
"os"
"runtime/pprof"
// Miller:
"stream"
"miller/stream"
)
// ----------------------------------------------------------------

View file

@ -1,7 +1,7 @@
package input
import (
"containers"
"miller/containers"
)
// reader *bufio.Reader in constructors/factory

View file

@ -6,8 +6,8 @@ import (
"io"
"strings"
// Miller:
"containers"
"lib"
"miller/containers"
"miller/lib"
)
type RecordReaderDKVP struct {

View file

@ -1,7 +1,7 @@
package mapping
import (
"containers"
"miller/containers"
)
func ChannelMapper(

View file

@ -1,7 +1,7 @@
package mapping
import (
"containers"
"miller/containers"
)
type MapperCat struct {

View file

@ -1,7 +1,7 @@
package mapping
import (
"containers"
"miller/containers"
)
type MapperFoo struct {

View file

@ -1,7 +1,7 @@
package mapping
import (
"containers"
"miller/containers"
)
type MapperNothing struct {

View file

@ -4,7 +4,7 @@ import (
// System:
"container/list"
// Miller:
"containers"
"miller/containers"
)
type MapperTac struct {

View file

@ -1,7 +1,7 @@
package mapping
import (
"containers"
"miller/containers"
)
type RecordMapper interface {

View file

@ -4,7 +4,7 @@ import (
// System:
"os"
// Miller:
"containers"
"miller/containers"
)
func ChannelWriter(

View file

@ -1,7 +1,7 @@
package output
import (
"containers"
"miller/containers"
)
// ostream *os.File in constructors/factory

View file

@ -5,7 +5,7 @@ import (
"encoding/csv"
"os"
// Miller:
"containers"
"miller/containers"
)
// ostream *os.File in constructors/factory

View file

@ -5,7 +5,7 @@ import (
"bytes"
"os"
// Miller:
"containers"
"miller/containers"
)
// ostream *os.File in constructors/factory

View file

@ -5,7 +5,7 @@ import (
"bytes"
"os"
// Miller:
"containers"
"miller/containers"
)
// ostream *os.File in constructors/factory

View file

@ -5,7 +5,7 @@ import (
"bytes"
"os"
// Miller:
"containers"
"miller/containers"
)
// ostream *os.File in constructors/factory

View file

@ -6,10 +6,10 @@ import (
"log"
"os"
// Miller:
"containers"
"input"
"mapping"
"output"
"miller/containers"
"miller/input"
"miller/mapping"
"miller/output"
)
// ----------------------------------------------------------------