diff options
Diffstat (limited to 'testfiles/main.go')
| -rw-r--r-- | testfiles/main.go | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testfiles/main.go b/testfiles/main.go new file mode 100644 index 0000000..b67f3d8 --- /dev/null +++ b/testfiles/main.go @@ -0,0 +1,22 @@ +//go:build go1.20 +// +build go1.20 + +package main + +import "go.wit.com/log" + +// sent via -ldflags +var VERSION string +var BUILDTIME string + +var sortmap map[string]string +var marshalKeys []string +var uniqueKeys []string + +var pb *Files + +func main() { + + pb = new(Files) + log.Info("did nothing yet") +} |
