start
This commit is contained in:
8
cmd/BUILD
Normal file
8
cmd/BUILD
Normal 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
9
cmd/cmd.go
Normal file
@ -0,0 +1,9 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fmt.Println("Hello World. Cmd")
|
||||
}
|
Reference in New Issue
Block a user