mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
13 lines
113 B
Go
13 lines
113 B
Go
package version
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
var RunAt time.Time
|
|
|
|
func init() {
|
|
RunAt = time.Now().UTC()
|
|
initBuild()
|
|
}
|