diff --git a/src/basic.go b/src/basic.go new file mode 100644 index 0000000000..a52374485c --- /dev/null +++ b/src/basic.go @@ -0,0 +1,10 @@ +// Copyright Styra, Inc. 2015 + +package jsonlog + +import "fmt" + +func Placeholder() { + fmt.Println("Hello there") +} + diff --git a/src/basic_test.go b/src/basic_test.go new file mode 100644 index 0000000000..35c6bb007b --- /dev/null +++ b/src/basic_test.go @@ -0,0 +1,12 @@ + + +package jsonlog + +import ( + "testing" +) + +func TestBasic(t *testing.T) { + t.Errorf("Will fail") +} +