Upgrade rules_go and gazelle

I want to use the new runfiles library that comes in rules_go.

Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I7c301ead2642fb2f172ad5a10824165a58d2d053
diff --git a/scouting/scraping/scrape.go b/scouting/scraping/scrape.go
index b905465..9cb2336 100644
--- a/scouting/scraping/scrape.go
+++ b/scouting/scraping/scrape.go
@@ -23,9 +23,10 @@
 // Also takes in a file path to the JSON config file that contains your TBA API key.
 // It defaults to <workspace root>/config.json
 // the config is expected to have the following contents:
-//{
-//    api_key:"myTBAapiKey"
-//}
+//
+//	{
+//	   api_key:"myTBAapiKey"
+//	}
 func getJson(year int32, eventCode, configPath, category string) ([]byte, error) {
 	if configPath == "" {
 		configPath = os.Getenv("BUILD_WORKSPACE_DIRECTORY") + "/scouting_config.json"
diff --git a/scouting/webserver/requests/requests.go b/scouting/webserver/requests/requests.go
index c59e7c5..bf24140 100644
--- a/scouting/webserver/requests/requests.go
+++ b/scouting/webserver/requests/requests.go
@@ -119,7 +119,7 @@
 // Parses the authorization information that the browser inserts into the
 // headers.  The authorization follows this format:
 //
-//  req.Headers["Authorization"] = []string{"Basic <base64 encoded username:password>"}
+//	req.Headers["Authorization"] = []string{"Basic <base64 encoded username:password>"}
 func parseUsername(req *http.Request) string {
 	auth, ok := req.Header["Authorization"]
 	if !ok {