mirror of https://github.com/minio/minio.git
22 lines
345 B
Go
22 lines
345 B
Go
|
// -------- 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)
|
||
|
}
|