Add 'webdav/' from commit '0d5eded8d0068b8df984b3d4c44a66f10c97cf77'

git-subtree-dir: webdav
git-subtree-mainline: 7ffaa859b3
git-subtree-split: 0d5eded8d0
This commit is contained in:
A.Unger
2020-09-18 12:56:12 +02:00
64 changed files with 4328 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package version
import (
"time"
)
var (
// String gets defined by the build system.
String = "0.0.0"
// Date indicates the build date.
Date = "00000000"
)
// Compiled returns the compile time of this service.
func Compiled() time.Time {
t, _ := time.Parse("20060102", Date)
return t
}