This commit is contained in:
Christian Nieves
2023-07-03 17:30:53 -05:00
parent 328aa0b8f5
commit 6f40b3a405
20 changed files with 36 additions and 207 deletions

8
cmd/BUILD Normal file
View File

@ -0,0 +1,8 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name ="cmd",
srcs = [ "cmd.go" ],
visibility = ["//visibility:public"],
importpath= "github.com/squk/lotr/cmd"
)

9
cmd/cmd.go Normal file
View File

@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello World. Cmd")
}