Compiled returns the compile time of this service.
()
| 91 | |
| 92 | // Compiled returns the compile time of this service. |
| 93 | func Compiled() time.Time { |
| 94 | if Date == Dev { |
| 95 | return time.Now() |
| 96 | } |
| 97 | t, _ := time.Parse("20060102", Date) |
| 98 | return t |
| 99 | } |
| 100 | |
| 101 | // GetString returns a version string with pre-releases and metadata |
| 102 | func GetString() string { |
no outgoing calls
no test coverage detected