Fix imports after enabling modules.

This commit is contained in:
Patrick Fairbank
2021-05-16 11:00:29 -07:00
parent c3ed0021fa
commit 7028891d84
82 changed files with 141 additions and 141 deletions

View File

@@ -7,7 +7,7 @@ package tournament
import (
"fmt"
"github.com/Team254/cheesy-arena/model"
"github.com/Team254/cheesy-arena-lite/model"
)
// Creates or updates the given award, depending on whether or not it already exists.

View File

@@ -4,7 +4,7 @@
package tournament
import (
"github.com/Team254/cheesy-arena/model"
"github.com/Team254/cheesy-arena-lite/model"
"github.com/stretchr/testify/assert"
"testing"
)

View File

@@ -7,7 +7,7 @@ package tournament
import (
"fmt"
"github.com/Team254/cheesy-arena/model"
"github.com/Team254/cheesy-arena-lite/model"
"strconv"
"time"
)

View File

@@ -4,7 +4,7 @@
package tournament
import (
"github.com/Team254/cheesy-arena/model"
"github.com/Team254/cheesy-arena-lite/model"
"github.com/stretchr/testify/assert"
"testing"
"time"

View File

@@ -6,8 +6,8 @@
package tournament
import (
"github.com/Team254/cheesy-arena/game"
"github.com/Team254/cheesy-arena/model"
"github.com/Team254/cheesy-arena-lite/game"
"github.com/Team254/cheesy-arena-lite/model"
"sort"
)

View File

@@ -4,7 +4,7 @@
package tournament
import (
"github.com/Team254/cheesy-arena/model"
"github.com/Team254/cheesy-arena-lite/model"
"github.com/stretchr/testify/assert"
"testing"
)

View File

@@ -8,7 +8,7 @@ package tournament
import (
"encoding/csv"
"fmt"
"github.com/Team254/cheesy-arena/model"
"github.com/Team254/cheesy-arena-lite/model"
"math"
"math/rand"
"os"

View File

@@ -5,7 +5,7 @@ package tournament
import (
"fmt"
"github.com/Team254/cheesy-arena/model"
"github.com/Team254/cheesy-arena-lite/model"
"github.com/stretchr/testify/assert"
"math/rand"
"os"

View File

@@ -6,7 +6,7 @@
package tournament
import (
"github.com/Team254/cheesy-arena/model"
"github.com/Team254/cheesy-arena-lite/model"
"testing"
)