const time.RFC3339

10 uses

	time (current package)
		format.go#L101: 	RFC3339     = "2006-01-02T15:04:05Z07:00"
		time.go#L1305: 	*t, err = Parse(`"`+RFC3339+`"`, string(data))
		time.go#L1325: 	*t, err = Parse(RFC3339, string(data))

	crypto/x509
		verify.go#L576: 			Detail: fmt.Sprintf("current time %s is before %s", now.Format(time.RFC3339), c.NotBefore.Format(time.RFC3339)),
		verify.go#L582: 			Detail: fmt.Sprintf("current time %s is after %s", now.Format(time.RFC3339), c.NotAfter.Format(time.RFC3339)),

	github.com/aws/smithy-go/time
		time.go#L42: 		time.RFC3339,

	github.com/robfig/cron/v3
		logger.go#L81: 			arg = t.Format(time.RFC3339)

	go.uber.org/zap/zapcore
		encoder.go#L144: 	encodeTimeLayout(t, time.RFC3339, enc)