Skip to content

Commit e4c2249

Browse files
author
Matthew
committed
ref(time): remove unnecessary string declarations
1 parent 714f02e commit e4c2249

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

time/time.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package time
33
import "time"
44

55
// DeisDatetimeFormat is the standard date/time representation used in Deis.
6-
const DeisDatetimeFormat string = "2006-01-02T15:04:05MST"
6+
const DeisDatetimeFormat = "2006-01-02T15:04:05MST"
77

88
// Different format to deal with the pyopenssl formatting
99
// http://www.pyopenssl.org/en/stable/api/crypto.html#OpenSSL.crypto.X509.get_notAfter
10-
const PyOpenSSLTimeDateTimeFormat string = "2006-01-02T15:04:05"
10+
const PyOpenSSLTimeDateTimeFormat = "2006-01-02T15:04:05"
1111

1212
// Time represents the standard datetime format used across the Deis Platform.
1313
type Time struct {

0 commit comments

Comments
 (0)