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

@@ -5,7 +5,7 @@
package model
import "github.com/Team254/cheesy-arena/game"
import "github.com/Team254/cheesy-arena-lite/game"
type EventSettings struct {
Id int

View File

@@ -7,7 +7,7 @@ package model
import (
"encoding/json"
"github.com/Team254/cheesy-arena/game"
"github.com/Team254/cheesy-arena-lite/game"
)
type MatchResult struct {

View File

@@ -7,7 +7,7 @@ package model
import (
"encoding/json"
"github.com/Team254/cheesy-arena/game"
"github.com/Team254/cheesy-arena-lite/game"
)
type RankingDb struct {

View File

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

View File

@@ -7,7 +7,7 @@ package model
import (
"fmt"
"github.com/Team254/cheesy-arena/game"
"github.com/Team254/cheesy-arena-lite/game"
"github.com/stretchr/testify/assert"
"os"
"path/filepath"