From 7028891d84d66218eead62d922efb4c0f0e1ff7f Mon Sep 17 00:00:00 2001 From: Patrick Fairbank Date: Sun, 16 May 2021 11:00:29 -0700 Subject: [PATCH] Fix imports after enabling modules. --- .gitignore | 2 +- README.md | 4 ++-- field/arena.go | 10 +++++----- field/arena_notifiers.go | 8 ++++---- field/arena_test.go | 4 ++-- field/display.go | 2 +- field/driver_station_connection.go | 6 +++--- field/driver_station_connection_test.go | 2 +- field/event_status_test.go | 2 +- field/team_match_log.go | 2 +- field/test_helpers.go | 4 ++-- go.mod | 2 +- main.go | 4 ++-- model/event_settings.go | 2 +- model/match_result.go | 2 +- model/ranking.go | 2 +- model/ranking_test.go | 2 +- model/test_helpers.go | 2 +- network/access_point.go | 2 +- network/access_point_test.go | 2 +- network/switch.go | 2 +- network/switch_test.go | 2 +- partner/tba.go | 2 +- partner/tba_test.go | 4 ++-- plc/plc.go | 2 +- tournament/awards.go | 2 +- tournament/awards_test.go | 2 +- tournament/elimination_schedule.go | 2 +- tournament/elimination_schedule_test.go | 2 +- tournament/qualification_rankings.go | 4 ++-- tournament/qualification_rankings_test.go | 2 +- tournament/schedule.go | 2 +- tournament/schedule_test.go | 2 +- tournament/test_helpers.go | 2 +- web/alliance_selection.go | 4 ++-- web/alliance_selection_test.go | 4 ++-- web/alliance_station_display.go | 4 ++-- web/alliance_station_display_test.go | 4 ++-- web/announcer_display.go | 4 ++-- web/announcer_display_test.go | 2 +- web/api.go | 8 ++++---- web/api_test.go | 6 +++--- web/audience_display.go | 6 +++--- web/audience_display_test.go | 2 +- web/display_utils.go | 2 +- web/field_monitor_display.go | 4 ++-- web/field_monitor_display_test.go | 2 +- web/login.go | 2 +- web/match_play.go | 8 ++++---- web/match_play_test.go | 8 ++++---- web/match_review.go | 2 +- web/match_review_test.go | 4 ++-- web/pit_display.go | 4 ++-- web/pit_display_test.go | 2 +- web/placeholder_display.go | 4 ++-- web/placeholder_display_test.go | 4 ++-- web/queueing_display.go | 6 +++--- web/queueing_display_test.go | 2 +- web/reports.go | 2 +- web/reports_test.go | 4 ++-- web/scores.go | 4 ++-- web/scores_test.go | 4 ++-- web/setup_awards.go | 4 ++-- web/setup_awards_test.go | 2 +- web/setup_displays.go | 6 +++--- web/setup_displays_test.go | 4 ++-- web/setup_field_testing.go | 6 +++--- web/setup_field_testing_test.go | 4 ++-- web/setup_lower_thirds.go | 4 ++-- web/setup_lower_thirds_test.go | 4 ++-- web/setup_schedule.go | 4 ++-- web/setup_schedule_test.go | 2 +- web/setup_settings.go | 2 +- web/setup_settings_test.go | 6 +++--- web/setup_sponsor_slides.go | 2 +- web/setup_sponsor_slides_test.go | 2 +- web/setup_teams.go | 2 +- web/setup_teams_test.go | 2 +- web/twitch_display.go | 4 ++-- web/twitch_display_test.go | 2 +- web/web.go | 4 ++-- web/web_test.go | 6 +++--- 82 files changed, 141 insertions(+), 141 deletions(-) diff --git a/.gitignore b/.gitignore index a66230a..cddd8db 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ *.o *.a *.so -cheesy-arena +cheesy-arena-lite # Folders _obj diff --git a/README.md b/README.md index 27fc17a..2f0edea 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Cheesy Arena Lite [![Build Status](https://travis-ci.org/Team254/cheesy-arena.sv ============ A game-agnostic field management system that just works. -For the game-specific version, switch to the `master` branch or see [Cheesy Arena](https://github.com/Team254/cheesy-arena/tree/master). +For the game-specific version, see [Cheesy Arena](https://github.com/Team254/cheesy-arena). ## Key features **For participants and spectators:** @@ -64,7 +64,7 @@ See the [Advanced Networking wiki page](https://github.com/Team254/cheesy-arena/ Cheesy Arena is far from finished! You can help by: * Checking out the [TODO list](TODO.md), writing a missing feature, and sending a pull request -* Filing any bugs or feature requests using the [issue tracker](https://github.com/Team254/cheesy-arena/issues) +* Filing any bugs or feature requests using the [issue tracker](https://github.com/Team254/cheesy-arena-lite/issues) * Contributing documentation to the [wiki](https://github.com/Team254/cheesy-arena/wiki) * Sending baked goods to [Pat](https://github.com/patfair) diff --git a/field/arena.go b/field/arena.go index 93c3340..0f144e2 100755 --- a/field/arena.go +++ b/field/arena.go @@ -7,11 +7,11 @@ package field import ( "fmt" - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/network" - "github.com/Team254/cheesy-arena/partner" - "github.com/Team254/cheesy-arena/plc" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/network" + "github.com/Team254/cheesy-arena-lite/partner" + "github.com/Team254/cheesy-arena-lite/plc" "log" "time" ) diff --git a/field/arena_notifiers.go b/field/arena_notifiers.go index ada58a6..4b256ef 100755 --- a/field/arena_notifiers.go +++ b/field/arena_notifiers.go @@ -7,10 +7,10 @@ package field import ( "fmt" - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/network" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/network" + "github.com/Team254/cheesy-arena-lite/websocket" "strconv" ) diff --git a/field/arena_test.go b/field/arena_test.go index 1567b8c..0e6bb4f 100644 --- a/field/arena_test.go +++ b/field/arena_test.go @@ -4,8 +4,8 @@ package field 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" "github.com/stretchr/testify/assert" "testing" "time" diff --git a/field/display.go b/field/display.go index 48af8fb..078b082 100644 --- a/field/display.go +++ b/field/display.go @@ -7,7 +7,7 @@ package field import ( "fmt" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/websocket" "net/url" "reflect" "sort" diff --git a/field/driver_station_connection.go b/field/driver_station_connection.go index 7fa10ef..9e6507a 100644 --- a/field/driver_station_connection.go +++ b/field/driver_station_connection.go @@ -7,9 +7,9 @@ package field import ( "fmt" - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/network" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/network" "log" "net" "regexp" diff --git a/field/driver_station_connection_test.go b/field/driver_station_connection_test.go index 72041e5..8320edb 100644 --- a/field/driver_station_connection_test.go +++ b/field/driver_station_connection_test.go @@ -4,7 +4,7 @@ package field import ( - "github.com/Team254/cheesy-arena/network" + "github.com/Team254/cheesy-arena-lite/network" "github.com/stretchr/testify/assert" "net" "testing" diff --git a/field/event_status_test.go b/field/event_status_test.go index a8e3f57..519e66d 100644 --- a/field/event_status_test.go +++ b/field/event_status_test.go @@ -4,7 +4,7 @@ package field import ( - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "github.com/stretchr/testify/assert" "testing" "time" diff --git a/field/team_match_log.go b/field/team_match_log.go index b06ffef..3d59e20 100644 --- a/field/team_match_log.go +++ b/field/team_match_log.go @@ -7,7 +7,7 @@ package field import ( "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "log" "os" "path/filepath" diff --git a/field/test_helpers.go b/field/test_helpers.go index d26b7f0..ad643a0 100644 --- a/field/test_helpers.go +++ b/field/test_helpers.go @@ -7,8 +7,8 @@ package field import ( "fmt" - "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" "github.com/stretchr/testify/assert" "math/rand" "os" diff --git a/go.mod b/go.mod index df001c4..29e3fb5 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/Team254/cheesy-arena +module github.com/Team254/cheesy-arena-lite go 1.16 diff --git a/main.go b/main.go index 2f40ed3..1bafa7e 100644 --- a/main.go +++ b/main.go @@ -4,8 +4,8 @@ package main import ( - "github.com/Team254/cheesy-arena/field" - "github.com/Team254/cheesy-arena/web" + "github.com/Team254/cheesy-arena-lite/field" + "github.com/Team254/cheesy-arena-lite/web" "log" "math/rand" "time" diff --git a/model/event_settings.go b/model/event_settings.go index e748f21..01d65b0 100755 --- a/model/event_settings.go +++ b/model/event_settings.go @@ -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 diff --git a/model/match_result.go b/model/match_result.go index 52d378d..6bf8aa6 100755 --- a/model/match_result.go +++ b/model/match_result.go @@ -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 { diff --git a/model/ranking.go b/model/ranking.go index cce3bac..fdc7583 100644 --- a/model/ranking.go +++ b/model/ranking.go @@ -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 { diff --git a/model/ranking_test.go b/model/ranking_test.go index 35dff5c..289d5b5 100644 --- a/model/ranking_test.go +++ b/model/ranking_test.go @@ -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" ) diff --git a/model/test_helpers.go b/model/test_helpers.go index 8ba49b7..6a5604f 100755 --- a/model/test_helpers.go +++ b/model/test_helpers.go @@ -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" diff --git a/network/access_point.go b/network/access_point.go index 8a95b54..d468db3 100644 --- a/network/access_point.go +++ b/network/access_point.go @@ -7,7 +7,7 @@ package network import ( "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "golang.org/x/crypto/ssh" "log" "regexp" diff --git a/network/access_point_test.go b/network/access_point_test.go index 50e6044..1eeaaef 100644 --- a/network/access_point_test.go +++ b/network/access_point_test.go @@ -5,7 +5,7 @@ package network import ( "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "github.com/stretchr/testify/assert" "io/ioutil" "regexp" diff --git a/network/switch.go b/network/switch.go index a1ac32d..23001ff 100644 --- a/network/switch.go +++ b/network/switch.go @@ -9,7 +9,7 @@ import ( "bufio" "bytes" "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "net" "regexp" "strconv" diff --git a/network/switch_test.go b/network/switch_test.go index 2ad20b4..5a26c8d 100644 --- a/network/switch_test.go +++ b/network/switch_test.go @@ -6,7 +6,7 @@ package network import ( "bytes" "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "github.com/stretchr/testify/assert" "net" "testing" diff --git a/partner/tba.go b/partner/tba.go index 1c22773..2ba52cb 100755 --- a/partner/tba.go +++ b/partner/tba.go @@ -11,7 +11,7 @@ import ( "encoding/base64" "encoding/json" "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "io/ioutil" "net/http" "strconv" diff --git a/partner/tba_test.go b/partner/tba_test.go index bf677bd..a3b587c 100644 --- a/partner/tba_test.go +++ b/partner/tba_test.go @@ -6,8 +6,8 @@ package partner import ( "bytes" "encoding/json" - "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" "github.com/stretchr/testify/assert" "io/ioutil" "net/http" diff --git a/plc/plc.go b/plc/plc.go index 948a1ad..2db71b1 100644 --- a/plc/plc.go +++ b/plc/plc.go @@ -7,7 +7,7 @@ package plc import ( "fmt" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/websocket" "github.com/goburrow/modbus" "log" "strings" diff --git a/tournament/awards.go b/tournament/awards.go index ab57cc7..50c483c 100644 --- a/tournament/awards.go +++ b/tournament/awards.go @@ -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. diff --git a/tournament/awards_test.go b/tournament/awards_test.go index 5fb7a2d..712d027 100644 --- a/tournament/awards_test.go +++ b/tournament/awards_test.go @@ -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" ) diff --git a/tournament/elimination_schedule.go b/tournament/elimination_schedule.go index 76cf327..559dab8 100644 --- a/tournament/elimination_schedule.go +++ b/tournament/elimination_schedule.go @@ -7,7 +7,7 @@ package tournament import ( "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "strconv" "time" ) diff --git a/tournament/elimination_schedule_test.go b/tournament/elimination_schedule_test.go index 4212ba0..29d0935 100644 --- a/tournament/elimination_schedule_test.go +++ b/tournament/elimination_schedule_test.go @@ -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" diff --git a/tournament/qualification_rankings.go b/tournament/qualification_rankings.go index f71278f..d764bd4 100755 --- a/tournament/qualification_rankings.go +++ b/tournament/qualification_rankings.go @@ -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" ) diff --git a/tournament/qualification_rankings_test.go b/tournament/qualification_rankings_test.go index 68e4867..2083657 100644 --- a/tournament/qualification_rankings_test.go +++ b/tournament/qualification_rankings_test.go @@ -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" ) diff --git a/tournament/schedule.go b/tournament/schedule.go index 024d6e8..06a5b47 100644 --- a/tournament/schedule.go +++ b/tournament/schedule.go @@ -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" diff --git a/tournament/schedule_test.go b/tournament/schedule_test.go index 883b832..221f9bb 100644 --- a/tournament/schedule_test.go +++ b/tournament/schedule_test.go @@ -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" diff --git a/tournament/test_helpers.go b/tournament/test_helpers.go index a7d36e6..8013384 100644 --- a/tournament/test_helpers.go +++ b/tournament/test_helpers.go @@ -6,7 +6,7 @@ package tournament import ( - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "testing" ) diff --git a/web/alliance_selection.go b/web/alliance_selection.go index c0809c4..9f817d7 100755 --- a/web/alliance_selection.go +++ b/web/alliance_selection.go @@ -7,8 +7,8 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/tournament" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/tournament" "net/http" "strconv" "time" diff --git a/web/alliance_selection_test.go b/web/alliance_selection_test.go index 2862fd1..390da07 100644 --- a/web/alliance_selection_test.go +++ b/web/alliance_selection_test.go @@ -4,8 +4,8 @@ package web 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" "github.com/stretchr/testify/assert" "testing" ) diff --git a/web/alliance_station_display.go b/web/alliance_station_display.go index 62411d8..906d839 100644 --- a/web/alliance_station_display.go +++ b/web/alliance_station_display.go @@ -6,8 +6,8 @@ package web import ( - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" "net/http" ) diff --git a/web/alliance_station_display_test.go b/web/alliance_station_display_test.go index 8bc4bbf..e15a515 100644 --- a/web/alliance_station_display_test.go +++ b/web/alliance_station_display_test.go @@ -4,8 +4,8 @@ package web import ( - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" "testing" diff --git a/web/announcer_display.go b/web/announcer_display.go index 43cdcba..4af28ee 100644 --- a/web/announcer_display.go +++ b/web/announcer_display.go @@ -6,8 +6,8 @@ package web import ( - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" "net/http" ) diff --git a/web/announcer_display_test.go b/web/announcer_display_test.go index ba413b7..5d38332 100644 --- a/web/announcer_display_test.go +++ b/web/announcer_display_test.go @@ -4,7 +4,7 @@ package web import ( - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" "testing" diff --git a/web/api.go b/web/api.go index c4b60e2..0b64e16 100755 --- a/web/api.go +++ b/web/api.go @@ -8,10 +8,10 @@ package web import ( "encoding/json" "fmt" - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/partner" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/partner" + "github.com/Team254/cheesy-arena-lite/websocket" "github.com/gorilla/mux" "net/http" "os" diff --git a/web/api_test.go b/web/api_test.go index 767ec79..433268b 100644 --- a/web/api_test.go +++ b/web/api_test.go @@ -5,9 +5,9 @@ package web import ( "encoding/json" - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" "testing" diff --git a/web/audience_display.go b/web/audience_display.go index de08df2..13bc8c2 100644 --- a/web/audience_display.go +++ b/web/audience_display.go @@ -6,9 +6,9 @@ package web import ( - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" "net/http" ) diff --git a/web/audience_display_test.go b/web/audience_display_test.go index 4f71df0..ca6f94b 100644 --- a/web/audience_display_test.go +++ b/web/audience_display_test.go @@ -4,7 +4,7 @@ package web import ( - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" "testing" diff --git a/web/display_utils.go b/web/display_utils.go index ad972ce..6ae3192 100644 --- a/web/display_utils.go +++ b/web/display_utils.go @@ -7,7 +7,7 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/field" + "github.com/Team254/cheesy-arena-lite/field" "net/http" "net/url" "regexp" diff --git a/web/field_monitor_display.go b/web/field_monitor_display.go index 311d299..b0867b2 100644 --- a/web/field_monitor_display.go +++ b/web/field_monitor_display.go @@ -6,8 +6,8 @@ package web import ( - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" "github.com/mitchellh/mapstructure" "io" "log" diff --git a/web/field_monitor_display_test.go b/web/field_monitor_display_test.go index 4f49afa..4668aec 100644 --- a/web/field_monitor_display_test.go +++ b/web/field_monitor_display_test.go @@ -4,7 +4,7 @@ package web import ( - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" "testing" diff --git a/web/login.go b/web/login.go index c1956a8..7cbaff4 100644 --- a/web/login.go +++ b/web/login.go @@ -7,7 +7,7 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "github.com/google/uuid" "net/http" "net/url" diff --git a/web/match_play.go b/web/match_play.go index 7b7c836..cc69a6b 100755 --- a/web/match_play.go +++ b/web/match_play.go @@ -7,10 +7,10 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/tournament" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/tournament" + "github.com/Team254/cheesy-arena-lite/websocket" "github.com/gorilla/mux" "github.com/mitchellh/mapstructure" "io" diff --git a/web/match_play_test.go b/web/match_play_test.go index 9051179..4ac0424 100644 --- a/web/match_play_test.go +++ b/web/match_play_test.go @@ -6,10 +6,10 @@ package web import ( "bytes" "fmt" - "github.com/Team254/cheesy-arena/field" - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/field" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/mitchellh/mapstructure" "github.com/stretchr/testify/assert" diff --git a/web/match_review.go b/web/match_review.go index 11a3d1c..8e362bd 100755 --- a/web/match_review.go +++ b/web/match_review.go @@ -7,7 +7,7 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "github.com/gorilla/mux" "net/http" "strconv" diff --git a/web/match_review_test.go b/web/match_review_test.go index 837945b..e64b29b 100644 --- a/web/match_review_test.go +++ b/web/match_review_test.go @@ -5,8 +5,8 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/tournament" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/tournament" "github.com/stretchr/testify/assert" "testing" ) diff --git a/web/pit_display.go b/web/pit_display.go index 7d90cce..9583e35 100644 --- a/web/pit_display.go +++ b/web/pit_display.go @@ -6,8 +6,8 @@ package web import ( - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" "net/http" ) diff --git a/web/pit_display_test.go b/web/pit_display_test.go index d6a7049..2216e86 100644 --- a/web/pit_display_test.go +++ b/web/pit_display_test.go @@ -4,7 +4,7 @@ package web import ( - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" "testing" diff --git a/web/placeholder_display.go b/web/placeholder_display.go index 32e83cc..fe7e5d5 100644 --- a/web/placeholder_display.go +++ b/web/placeholder_display.go @@ -6,8 +6,8 @@ package web import ( - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" "net/http" ) diff --git a/web/placeholder_display_test.go b/web/placeholder_display_test.go index b65d1ce..1d7c137 100644 --- a/web/placeholder_display_test.go +++ b/web/placeholder_display_test.go @@ -4,8 +4,8 @@ package web import ( - "github.com/Team254/cheesy-arena/field" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/field" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" "testing" diff --git a/web/queueing_display.go b/web/queueing_display.go index dce8e61..84fd1a9 100644 --- a/web/queueing_display.go +++ b/web/queueing_display.go @@ -6,9 +6,9 @@ package web import ( - "github.com/Team254/cheesy-arena/field" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/field" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" "net/http" "time" ) diff --git a/web/queueing_display_test.go b/web/queueing_display_test.go index b42669a..218ce09 100644 --- a/web/queueing_display_test.go +++ b/web/queueing_display_test.go @@ -4,7 +4,7 @@ package web import ( - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" "testing" diff --git a/web/reports.go b/web/reports.go index 7076c38..f5d3470 100755 --- a/web/reports.go +++ b/web/reports.go @@ -7,7 +7,7 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/tournament" + "github.com/Team254/cheesy-arena-lite/tournament" "github.com/gorilla/mux" "github.com/jung-kurt/gofpdf" "net/http" diff --git a/web/reports_test.go b/web/reports_test.go index f826dc4..faae2fc 100644 --- a/web/reports_test.go +++ b/web/reports_test.go @@ -4,8 +4,8 @@ package web 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" "github.com/stretchr/testify/assert" "testing" "time" diff --git a/web/scores.go b/web/scores.go index 1363cfc..666ea2a 100644 --- a/web/scores.go +++ b/web/scores.go @@ -53,8 +53,8 @@ package web import ( "encoding/json" - "github.com/Team254/cheesy-arena/field" - "github.com/Team254/cheesy-arena/game" + "github.com/Team254/cheesy-arena-lite/field" + "github.com/Team254/cheesy-arena-lite/game" "io/ioutil" "net/http" ) diff --git a/web/scores_test.go b/web/scores_test.go index c39d894..4c6fbbc 100644 --- a/web/scores_test.go +++ b/web/scores_test.go @@ -5,8 +5,8 @@ package web import ( "encoding/json" - "github.com/Team254/cheesy-arena/field" - "github.com/Team254/cheesy-arena/game" + "github.com/Team254/cheesy-arena-lite/field" + "github.com/Team254/cheesy-arena-lite/game" "github.com/stretchr/testify/assert" "net/http/httptest" "testing" diff --git a/web/setup_awards.go b/web/setup_awards.go index 65d1210..4f723b6 100644 --- a/web/setup_awards.go +++ b/web/setup_awards.go @@ -6,8 +6,8 @@ package web import ( - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/tournament" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/tournament" "net/http" "strconv" ) diff --git a/web/setup_awards_test.go b/web/setup_awards_test.go index a54a15a..4402ef3 100644 --- a/web/setup_awards_test.go +++ b/web/setup_awards_test.go @@ -4,7 +4,7 @@ package web import ( - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "github.com/stretchr/testify/assert" "testing" ) diff --git a/web/setup_displays.go b/web/setup_displays.go index eb33304..509585e 100644 --- a/web/setup_displays.go +++ b/web/setup_displays.go @@ -7,9 +7,9 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/field" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/field" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" "github.com/mitchellh/mapstructure" "io" "log" diff --git a/web/setup_displays_test.go b/web/setup_displays_test.go index f665cb3..0af5f52 100644 --- a/web/setup_displays_test.go +++ b/web/setup_displays_test.go @@ -4,8 +4,8 @@ package web import ( - "github.com/Team254/cheesy-arena/field" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/field" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/mitchellh/mapstructure" "github.com/stretchr/testify/assert" diff --git a/web/setup_field_testing.go b/web/setup_field_testing.go index f22e71c..f0c8938 100644 --- a/web/setup_field_testing.go +++ b/web/setup_field_testing.go @@ -7,9 +7,9 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" "io" "log" "net/http" diff --git a/web/setup_field_testing_test.go b/web/setup_field_testing_test.go index 4f4b4b9..0adfbf2 100644 --- a/web/setup_field_testing_test.go +++ b/web/setup_field_testing_test.go @@ -4,8 +4,8 @@ package web import ( - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" "testing" diff --git a/web/setup_lower_thirds.go b/web/setup_lower_thirds.go index cec5f1f..c3b9f67 100644 --- a/web/setup_lower_thirds.go +++ b/web/setup_lower_thirds.go @@ -7,8 +7,8 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" "github.com/mitchellh/mapstructure" "io" "log" diff --git a/web/setup_lower_thirds_test.go b/web/setup_lower_thirds_test.go index a5fb537..fdde166 100644 --- a/web/setup_lower_thirds_test.go +++ b/web/setup_lower_thirds_test.go @@ -4,8 +4,8 @@ package web import ( - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" "testing" diff --git a/web/setup_schedule.go b/web/setup_schedule.go index d4af5fc..d4a1a52 100644 --- a/web/setup_schedule.go +++ b/web/setup_schedule.go @@ -7,8 +7,8 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/tournament" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/tournament" "net/http" "strconv" "time" diff --git a/web/setup_schedule_test.go b/web/setup_schedule_test.go index 19d5f6a..7e4cdca 100644 --- a/web/setup_schedule_test.go +++ b/web/setup_schedule_test.go @@ -4,7 +4,7 @@ package web import ( - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "github.com/stretchr/testify/assert" "testing" "time" diff --git a/web/setup_settings.go b/web/setup_settings.go index 86b45ad..f30a29c 100755 --- a/web/setup_settings.go +++ b/web/setup_settings.go @@ -7,7 +7,7 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "io" "io/ioutil" "net/http" diff --git a/web/setup_settings_test.go b/web/setup_settings_test.go index 61ac4cf..d15d1e8 100644 --- a/web/setup_settings_test.go +++ b/web/setup_settings_test.go @@ -5,9 +5,9 @@ package web import ( "bytes" - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/tournament" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/tournament" "github.com/stretchr/testify/assert" "io" "mime/multipart" diff --git a/web/setup_sponsor_slides.go b/web/setup_sponsor_slides.go index 019fa65..c85125a 100644 --- a/web/setup_sponsor_slides.go +++ b/web/setup_sponsor_slides.go @@ -6,7 +6,7 @@ package web import ( - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "net/http" "strconv" ) diff --git a/web/setup_sponsor_slides_test.go b/web/setup_sponsor_slides_test.go index 5e72399..7cec0c4 100644 --- a/web/setup_sponsor_slides_test.go +++ b/web/setup_sponsor_slides_test.go @@ -4,7 +4,7 @@ package web import ( - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "github.com/stretchr/testify/assert" "testing" ) diff --git a/web/setup_teams.go b/web/setup_teams.go index de805ab..42f61e4 100644 --- a/web/setup_teams.go +++ b/web/setup_teams.go @@ -8,7 +8,7 @@ package web import ( "bytes" "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "github.com/dchest/uniuri" "github.com/gorilla/mux" "net/http" diff --git a/web/setup_teams_test.go b/web/setup_teams_test.go index 8ccfa89..721e956 100644 --- a/web/setup_teams_test.go +++ b/web/setup_teams_test.go @@ -5,7 +5,7 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/model" "github.com/stretchr/testify/assert" "net/http" "net/http/httptest" diff --git a/web/twitch_display.go b/web/twitch_display.go index f26c54e..4c64dfb 100644 --- a/web/twitch_display.go +++ b/web/twitch_display.go @@ -6,8 +6,8 @@ package web import ( - "github.com/Team254/cheesy-arena/model" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/model" + "github.com/Team254/cheesy-arena-lite/websocket" "net/http" ) diff --git a/web/twitch_display_test.go b/web/twitch_display_test.go index 4f340b1..6c03101 100644 --- a/web/twitch_display_test.go +++ b/web/twitch_display_test.go @@ -4,7 +4,7 @@ package web import ( - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/websocket" gorillawebsocket "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" "testing" diff --git a/web/web.go b/web/web.go index affec00..e74f0b1 100755 --- a/web/web.go +++ b/web/web.go @@ -7,8 +7,8 @@ package web import ( "fmt" - "github.com/Team254/cheesy-arena/field" - "github.com/Team254/cheesy-arena/model" + "github.com/Team254/cheesy-arena-lite/field" + "github.com/Team254/cheesy-arena-lite/model" "github.com/gorilla/mux" "log" "net/http" diff --git a/web/web_test.go b/web/web_test.go index 6689eb2..58362b1 100644 --- a/web/web_test.go +++ b/web/web_test.go @@ -4,9 +4,9 @@ package web import ( - "github.com/Team254/cheesy-arena/field" - "github.com/Team254/cheesy-arena/game" - "github.com/Team254/cheesy-arena/websocket" + "github.com/Team254/cheesy-arena-lite/field" + "github.com/Team254/cheesy-arena-lite/game" + "github.com/Team254/cheesy-arena-lite/websocket" "github.com/stretchr/testify/assert" "net/http" "net/http/httptest"