| // Copyright 2015 The Vanadium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| // These variables are filled in at link time, using: |
| // -ldflags "-X v.io/x/ref/lib/flags/buildinfo.<varname> <value>" |
| var timestamp, username, platform string |
| // T describes binary metadata. |
| GoVersion, BuildTimestamp, BuildUser, BuildPlatform string |
| GoVersion: runtime.Version(), |
| BuildTimestamp: timestamp, |
| // Info returns metadata about the current binary. |
| // String returns the binary metadata as a JSON-encoded string, under the |
| // expectation that clients may want to parse it for specific bits of metadata. |
| func (t *T) String() string { |
| jsonT, err := json.Marshal(t) |