We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 714f02e commit e4c2249Copy full SHA for e4c2249
1 file changed
time/time.go
@@ -3,11 +3,11 @@ package time
3
import "time"
4
5
// DeisDatetimeFormat is the standard date/time representation used in Deis.
6
-const DeisDatetimeFormat string = "2006-01-02T15:04:05MST"
+const DeisDatetimeFormat = "2006-01-02T15:04:05MST"
7
8
// Different format to deal with the pyopenssl formatting
9
// http://www.pyopenssl.org/en/stable/api/crypto.html#OpenSSL.crypto.X509.get_notAfter
10
-const PyOpenSSLTimeDateTimeFormat string = "2006-01-02T15:04:05"
+const PyOpenSSLTimeDateTimeFormat = "2006-01-02T15:04:05"
11
12
// Time represents the standard datetime format used across the Deis Platform.
13
type Time struct {
0 commit comments