File tree Expand file tree Collapse file tree 21 files changed +41
-41
lines changed Expand file tree Collapse file tree 21 files changed +41
-41
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ limitations under the License.
16
16
package cmd
17
17
18
18
import (
19
- "mrfparse/pkg/mrfparse/mrf"
20
- "mrfparse/pkg/mrfparse/utils"
19
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/mrf"
20
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
21
21
22
22
"github.com/spf13/cobra"
23
23
)
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ limitations under the License.
16
16
package cmd
17
17
18
18
import (
19
- "mrfparse/pkg/mrfparse/pipeline"
20
- "mrfparse/pkg/mrfparse/utils"
19
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/pipeline"
20
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
21
21
22
22
"github.com/spf13/cobra"
23
23
)
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ limitations under the License.
16
16
package cmd
17
17
18
18
import (
19
- "mrfparse/pkg/mrfparse/utils"
19
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
20
20
"os"
21
21
"runtime/pprof"
22
22
"strings"
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ limitations under the License.
16
16
package cmd
17
17
18
18
import (
19
- "mrfparse/pkg/mrfparse/split"
20
- "mrfparse/pkg/mrfparse/utils"
19
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/split"
20
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
21
21
22
22
"github.com/spf13/cobra"
23
23
)
Original file line number Diff line number Diff line change 1
- module mrfparse
1
+ module github.com/danielchalef/ mrfparse
2
2
3
3
go 1.19
4
4
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ limitations under the License.
15
15
*/
16
16
package main
17
17
18
- import "mrfparse/cmd"
18
+ import "github.com/danielchalef/ mrfparse/cmd"
19
19
20
20
func main () {
21
21
cmd .Execute ()
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ package cloud
18
18
import (
19
19
"context"
20
20
"errors"
21
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/utils"
21
22
"io"
22
- "mrfparse/pkg/mrfparse/utils"
23
23
"net/url"
24
24
"os"
25
25
"path/filepath"
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ import (
19
19
"bufio"
20
20
"context"
21
21
"fmt"
22
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/cloud"
23
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/models"
24
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/utils"
22
25
"io"
23
- "mrfparse/pkg/mrfparse/cloud"
24
- "mrfparse/pkg/mrfparse/models"
25
- "mrfparse/pkg/mrfparse/utils"
26
26
"strings"
27
27
28
28
"github.com/minio/simdjson-go"
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ limitations under the License.
16
16
package mrf
17
17
18
18
import (
19
- "mrfparse/pkg/mrfparse/models"
20
- "mrfparse/pkg/mrfparse/utils"
19
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/models"
20
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
21
21
"testing"
22
22
23
23
mapset "github.com/deckarep/golang-set/v2"
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ package mrf
17
17
18
18
import (
19
19
"context"
20
- "mrfparse/pkg/mrfparse/cloud"
21
- "mrfparse/pkg/mrfparse/models"
22
- "mrfparse/pkg/mrfparse/parquet"
23
- "mrfparse/pkg/mrfparse/utils"
20
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/cloud"
21
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/models"
22
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/parquet"
23
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
24
24
"path/filepath"
25
25
"strings"
26
26
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ import (
19
19
"bufio"
20
20
"context"
21
21
"fmt"
22
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/cloud"
23
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/models"
24
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/utils"
22
25
"io"
23
- "mrfparse/pkg/mrfparse/cloud"
24
- "mrfparse/pkg/mrfparse/models"
25
- "mrfparse/pkg/mrfparse/utils"
26
26
"strings"
27
27
"sync/atomic"
28
28
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ limitations under the License.
16
16
package mrf
17
17
18
18
import (
19
- "mrfparse/pkg/mrfparse/models"
20
- "mrfparse/pkg/mrfparse/utils"
19
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/models"
20
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
21
21
"testing"
22
22
23
23
"github.com/stretchr/testify/assert"
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ limitations under the License.
15
15
*/
16
16
package mrf
17
17
18
- import "mrfparse/pkg/mrfparse/models"
18
+ import "github.com/danielchalef/ mrfparse/pkg/mrfparse/models"
19
19
20
20
var WriteRecords func (records []* models.Mrf ) error
21
21
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ import (
19
19
"context"
20
20
"encoding/json"
21
21
"errors"
22
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/cloud"
23
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/models"
24
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/utils"
22
25
"io"
23
- "mrfparse/pkg/mrfparse/cloud"
24
- "mrfparse/pkg/mrfparse/models"
25
- "mrfparse/pkg/mrfparse/utils"
26
26
"path/filepath"
27
27
"strconv"
28
28
"strings"
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ package mrf
18
18
import (
19
19
"context"
20
20
"encoding/csv"
21
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/cloud"
22
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/utils"
21
23
"io"
22
- "mrfparse/pkg/mrfparse/cloud"
23
- "mrfparse/pkg/mrfparse/utils"
24
24
25
25
mapset "github.com/deckarep/golang-set/v2"
26
26
"github.com/spf13/viper"
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ package parquet
18
18
import (
19
19
"context"
20
20
"fmt"
21
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/cloud"
22
+ "github.com/danielchalef/mrfparse/pkg/mrfparse/models"
21
23
"io"
22
- "mrfparse/pkg/mrfparse/cloud"
23
- "mrfparse/pkg/mrfparse/models"
24
24
25
25
"github.com/segmentio/parquet-go"
26
26
"github.com/spf13/viper"
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ package parquet
17
17
18
18
import (
19
19
"context"
20
- "mrfparse/pkg/mrfparse/models"
21
- "mrfparse/pkg/mrfparse/utils"
20
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/models"
21
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
22
22
"testing"
23
23
24
24
"github.com/alecthomas/assert/v2"
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ package parquet
17
17
18
18
import (
19
19
"context"
20
- "mrfparse/pkg/mrfparse/models"
21
- "mrfparse/pkg/mrfparse/utils"
20
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/models"
21
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
22
22
)
23
23
24
24
var log = utils .GetLogger ()
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ limitations under the License.
16
16
package pipeline
17
17
18
18
import (
19
- "mrfparse/pkg/mrfparse/utils"
19
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
20
20
)
21
21
22
22
// A very simple composable pipeline framework. Steps are added to a pipeline and then run in order.
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ limitations under the License.
16
16
package pipeline
17
17
18
18
import (
19
- "mrfparse/pkg/mrfparse/mrf"
20
- "mrfparse/pkg/mrfparse/split"
21
- "mrfparse/pkg/mrfparse/utils"
19
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/mrf"
20
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/split"
21
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
22
22
"os"
23
23
24
24
"github.com/spf13/viper"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ limitations under the License.
16
16
package split
17
17
18
18
import (
19
- "mrfparse/pkg/mrfparse/utils"
19
+ "github.com/danielchalef/ mrfparse/pkg/mrfparse/utils"
20
20
21
21
"github.com/danielchalef/jsplit/pkg/jsplit"
22
22
)
You can’t perform that action at this time.
0 commit comments