This commit is contained in:
Christian Nieves
2023-07-03 18:23:23 -05:00
parent 8efe9263b1
commit 574a07495f
12 changed files with 148 additions and 40 deletions

View File

@ -1,8 +0,0 @@
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"
)

View File

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