diff options
| author | Jeff Carr <[email protected]> | 2025-01-08 19:58:29 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-08 19:58:29 -0600 |
| commit | 40bb6caf20e48bbed11455a274d7359673beb5a2 (patch) | |
| tree | 58c5960abc291dea5a3d1cb135a37aab886e093d /testfiles/main.go | |
| parent | 99c036733bb581fa7bf70562dd25ae55e35461c7 (diff) | |
testfiles dir
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") +} |
