summaryrefslogtreecommitdiff
path: root/testfiles/main.go
blob: b67f3d80644cd4e69f7294a598fab9da9cd93fab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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")
}