diff --git a/.gitignore b/.gitignore index d3beee5..4d7ed17 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ _testmain.go *.test *.prof +/satbd-explorer diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7ed0748 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +all: build check + +build : + go build + +check : + go vet + go test -coverprofile=cover.out -covermode=count + golint diff --git a/main.go b/main.go new file mode 100644 index 0000000..43761cc --- /dev/null +++ b/main.go @@ -0,0 +1,11 @@ +package main + +import ( + "fmt" + "os" +) + +func main() { + fmt.Fprintf(os.Stderr, "Not Yet Implemented") + os.Exit(1) +}