You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
345 B
21 lines
345 B
// -------- DO NOT EDIT --------
|
|
// this is an autogenerated file
|
|
|
|
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
// Version autogenerated
|
|
var Version = "2015-07-13T01:59:53.151205631Z"
|
|
|
|
// getVersion -
|
|
func getVersion() string {
|
|
t, _ := time.Parse(time.RFC3339Nano, Version)
|
|
if t.IsZero() {
|
|
return ""
|
|
}
|
|
return t.Format(http.TimeFormat)
|
|
}
|
|
|