mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-28 18:21:52 +00:00
miller/ prefixing on package names
This commit is contained in:
parent
d3e209bb64
commit
a6fa5a350e
21 changed files with 20 additions and 20 deletions
|
|
@ -8,7 +8,7 @@ import (
|
|||
"os"
|
||||
"runtime/pprof"
|
||||
// Miller:
|
||||
"stream"
|
||||
"miller/stream"
|
||||
)
|
||||
|
||||
// ----------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
package input
|
||||
|
||||
import (
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
// reader *bufio.Reader in constructors/factory
|
||||
|
|
@ -6,8 +6,8 @@ import (
|
|||
"io"
|
||||
"strings"
|
||||
// Miller:
|
||||
"containers"
|
||||
"lib"
|
||||
"miller/containers"
|
||||
"miller/lib"
|
||||
)
|
||||
|
||||
type RecordReaderDKVP struct {
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
package mapping
|
||||
|
||||
import (
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
func ChannelMapper(
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
package mapping
|
||||
|
||||
import (
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
type MapperCat struct {
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
package mapping
|
||||
|
||||
import (
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
type MapperFoo struct {
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
package mapping
|
||||
|
||||
import (
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
type MapperNothing struct {
|
||||
|
|
@ -4,7 +4,7 @@ import (
|
|||
// System:
|
||||
"container/list"
|
||||
// Miller:
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
type MapperTac struct {
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
package mapping
|
||||
|
||||
import (
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
type RecordMapper interface {
|
||||
|
|
@ -4,7 +4,7 @@ import (
|
|||
// System:
|
||||
"os"
|
||||
// Miller:
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
func ChannelWriter(
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
package output
|
||||
|
||||
import (
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
// ostream *os.File in constructors/factory
|
||||
|
|
@ -5,7 +5,7 @@ import (
|
|||
"encoding/csv"
|
||||
"os"
|
||||
// Miller:
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
// ostream *os.File in constructors/factory
|
||||
|
|
@ -5,7 +5,7 @@ import (
|
|||
"bytes"
|
||||
"os"
|
||||
// Miller:
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
// ostream *os.File in constructors/factory
|
||||
|
|
@ -5,7 +5,7 @@ import (
|
|||
"bytes"
|
||||
"os"
|
||||
// Miller:
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
// ostream *os.File in constructors/factory
|
||||
|
|
@ -5,7 +5,7 @@ import (
|
|||
"bytes"
|
||||
"os"
|
||||
// Miller:
|
||||
"containers"
|
||||
"miller/containers"
|
||||
)
|
||||
|
||||
// ostream *os.File in constructors/factory
|
||||
|
|
@ -6,10 +6,10 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
// Miller:
|
||||
"containers"
|
||||
"input"
|
||||
"mapping"
|
||||
"output"
|
||||
"miller/containers"
|
||||
"miller/input"
|
||||
"miller/mapping"
|
||||
"miller/output"
|
||||
)
|
||||
|
||||
// ----------------------------------------------------------------
|
||||
Loading…
Add table
Add a link
Reference in a new issue