github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/pkg/gateway/serde/types.go (about) 1 package serde 2 3 import ( 4 "time" 5 ) 6 7 const ( 8 AWSTimestampFormat = "2006-01-02T15:04:05.000Z" 9 ) 10 11 func Timestamp(ts time.Time) string { 12 return ts.UTC().Format(AWSTimestampFormat) 13 }