Add mkdonut command

This commit is contained in:
Harshavardhana
2015-07-12 18:45:19 -07:00
parent 4c95775864
commit 535bcc3eac
7 changed files with 500 additions and 20 deletions
+21
View File
@@ -0,0 +1,21 @@
// -------- 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)
}