Skip to content

Commit

Permalink
change module name so it can be installed from Github
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisVilches committed Oct 21, 2024
1 parent c780232 commit 1c48235
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .metadata/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.5
2.0.6
4 changes: 2 additions & 2 deletions cli/colorize.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cli

import (
"cpdiff/cmp"
"cpdiff/util"
"github.com/ChrisVilches/cpdiff/cmp"
"github.com/ChrisVilches/cpdiff/util"
"slices"
"strings"

Expand Down
2 changes: 1 addition & 1 deletion cli/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package cli

import (
"bufio"
"cpdiff/cmp"
"errors"
"fmt"
"github.com/ChrisVilches/cpdiff/cmp"
"os"
"strings"
"time"
Expand Down
4 changes: 2 additions & 2 deletions cli/full_result.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cli

import (
"cpdiff/big"
"cpdiff/cmp"
"fmt"
"github.com/ChrisVilches/cpdiff/big"
"github.com/ChrisVilches/cpdiff/cmp"
"time"

"github.com/fatih/color"
Expand Down
2 changes: 1 addition & 1 deletion cli/options.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cli

import (
"cpdiff/big"
"fmt"
"github.com/ChrisVilches/cpdiff/big"
"github.com/urfave/cli/v2"
)

Expand Down
2 changes: 1 addition & 1 deletion cmp/comparable.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package cmp

import "cpdiff/big"
import "github.com/ChrisVilches/cpdiff/big"

type Comparable interface {
Type() ComparableType
Expand Down
2 changes: 1 addition & 1 deletion cmp/num_array.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cmp

import (
"cpdiff/big"
"fmt"
"github.com/ChrisVilches/cpdiff/big"
)

type NumArray struct {
Expand Down
2 changes: 1 addition & 1 deletion cmp/num_array_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cmp

import (
"cpdiff/big"
"fmt"
"github.com/ChrisVilches/cpdiff/big"
"math/rand"
"slices"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion cmp/parser.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cmp

import (
"cpdiff/big"
"github.com/ChrisVilches/cpdiff/big"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion cmp/process.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cmp

import (
"cpdiff/big"
"github.com/ChrisVilches/cpdiff/big"
)

func findGlobalResult(cmpRanges []verdictRange) Verdict {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module cpdiff
module github.com/ChrisVilches/cpdiff

go 1.23.2

Expand Down
2 changes: 1 addition & 1 deletion integration/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package integration

import (
"bufio"
"cpdiff/cli"
"fmt"
"github.com/ChrisVilches/cpdiff/cli"
"github.com/fatih/color"
"io"
"os"
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package main

import (
"cpdiff/cli"
_ "embed"
"fmt"
"github.com/ChrisVilches/cpdiff/cli"
"os"
"strings"
)
Expand Down

0 comments on commit 1c48235

Please sign in to comment.