Compare commits

..

1 Commits

Author SHA1 Message Date
7fc09053a4 Initial commit 2023-07-03 17:33:30 -05:00
5 changed files with 15 additions and 1 deletions

1
.gitignore vendored
View File

@ -35,4 +35,3 @@
# Go workspace file # Go workspace file
go.work go.work

6
.gitmodules vendored
View File

@ -4,3 +4,9 @@
[submodule "submodule/src/remote"] [submodule "submodule/src/remote"]
path = submodule/src/remote path = submodule/src/remote
url = git://github.com/laramiel/bazel-example-golang-remote url = git://github.com/laramiel/bazel-example-golang-remote
[submodule "vendor/github.com/laramiel/bazel-example-golang-remote"]
path = vendor/github.com/laramiel/bazel-example-golang-remote
url = git://github.com/laramiel/bazel-example-golang-remote
[submodule "vendor/github.com/laramiel/bazel-example-golang-bare"]
path = vendor/github.com/laramiel/bazel-example-golang-bare
url = git://github.com/laramiel/bazel-example-golang-bare

7
vendor/github.com/laramiel/BUILD generated vendored Normal file
View File

@ -0,0 +1,7 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "bare",
srcs = ["bazel-example-golang-bare/bare.go"],
visibility = ["//visibility:public"],
)