Rename go files that contain "main" function to main.go.

This is a good Go convention that we should follow.

PiperOrigin-RevId: 378538679
This commit is contained in:
Nicolas Lacasse
2021-06-09 17:36:51 -07:00
committed by gVisor bot
parent 1ca981f50f
commit 3fb646ed10
6 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ go_binary(
testonly = 1,
srcs = [
"fds.go",
"test_app.go",
"main.go",
],
pure = True,
visibility = ["//runsc/container:__pkg__"],
+1 -1
View File
@@ -5,7 +5,7 @@ package(licenses = ["notice"])
go_binary(
name = "runner",
testonly = 1,
srcs = ["runner.go"],
srcs = ["main.go"],
data = [
"//runsc",
],
+1 -1
View File
@@ -5,8 +5,8 @@ package(licenses = ["notice"])
go_binary(
name = "go_generics",
srcs = [
"generics.go",
"imports.go",
"main.go",
"remove.go",
],
visibility = ["//:sandbox"],